]> git.basschouten.com Git - openhab-addons.git/blob
b043b8609368c8db912a9ea9af2c654115e571bb
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.iaqualink.internal.api.dto;
14
15 /**
16  * Object used to login to service.
17  *
18  * @author Dan Cunningham - Initial contribution
19  *
20  */
21 public class SignIn {
22
23     private String apiKey;
24
25     private String email;
26
27     private String password;
28
29     public SignIn(String apiKey, String email, String password) {
30         super();
31         this.apiKey = apiKey;
32         this.email = email;
33         this.password = password;
34     }
35
36     public String getApiKey() {
37         return apiKey;
38     }
39
40     public void setApiKey(String apiKey) {
41         this.apiKey = apiKey;
42     }
43
44     public String getEmail() {
45         return email;
46     }
47
48     public void setEmail(String email) {
49         this.email = email;
50     }
51
52     public String getPassword() {
53         return password;
54     }
55
56     public void setPassword(String password) {
57         this.password = password;
58     }
59 }