]> git.basschouten.com Git - openhab-addons.git/blob
061aa2881a7e125dd9449b7e2c8fa49265e9ae41
[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.ihc.internal.ws.datatypes;
14
15 /**
16  * Class for WSUserGroup complex type.
17  *
18  * @author Pauli Anttila - Initial contribution
19  */
20 public class WSUserGroup {
21
22     protected String type;
23
24     public WSUserGroup() {
25     }
26
27     public WSUserGroup(String type) {
28         this.type = type;
29     }
30
31     /**
32      * Gets the value of the type property.
33      *
34      * @return possible object is {@link String }
35      *
36      */
37     public String getType() {
38         return type;
39     }
40
41     /**
42      * Sets the value of the type property.
43      *
44      * @param value allowed object is {@link String }
45      *
46      */
47     public void setType(String value) {
48         this.type = value;
49     }
50 }