]> git.basschouten.com Git - openhab-addons.git/blob
93c548706ea6c080c92537dda361d89730833410
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 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.warmup.internal.model.auth;
14
15 /**
16  * @author James Melville - Initial contribution
17  */
18 @SuppressWarnings("unused")
19 public class AuthRequestDataDTO {
20     private String email;
21     private String password;
22     private String method;
23     private String appId;
24
25     public AuthRequestDataDTO(String email, String password, String method, String appId) {
26         this.setEmail(email);
27         this.setPassword(password);
28         this.setMethod(method);
29         this.setAppId(appId);
30     }
31
32     public void setEmail(String email) {
33         this.email = email;
34     }
35
36     public void setPassword(String password) {
37         this.password = password;
38     }
39
40     public void setMethod(String method) {
41         this.method = method;
42     }
43
44     public void setAppId(String appId) {
45         this.appId = appId;
46     }
47 }