forked from community/device-mgt-core
Compare commits
5 Commits
6dbf4de152
...
350f39c036
Author | SHA1 | Date |
---|---|---|
Arshana | 350f39c036 | 2 years ago |
Arshana | 867c2834a9 | 2 years ago |
Arshana | 0faa7e4199 | 2 years ago |
Charitha Goonetilleke | 158e3283dd | 2 years ago |
Charitha Goonetilleke | 3fdbdceb95 | 2 years ago |
@ -1,14 +1,5 @@
|
||||
# carbon-device-mgt
|
||||
# Entgra Device Management Core
|
||||
|
||||
<a href='https://opensource.org/licenses/Apache-2.0'><img src='https://img.shields.io/badge/License-Apache%202.0-blue.svg'></a><br/>
|
||||
|
||||
[![pipeline status](https://gitlab.com/entgra/carbon-device-mgt/badges/master/pipeline.svg)](https://gitlab.com/entgra/carbon-device-mgt/commits/master)
|
||||
|
||||
Entgra CONNECTED DEVICE MANAGEMENT COMPONENTS
|
||||
|
||||
Entgra Connected Device Manager (Entgra CDM) is a comprehensive platform that helps solve mobile computing challenges
|
||||
enterprises face today when dealing with both corporate owned, personally enabled (COPE) devices and employee owned devices as part of a bring your own device (BYOD) program.
|
||||
|
||||
Whether it is device provisioning, device configuration management, policy enforcement, mobile application
|
||||
management, device data security, or compliance monitoring, Entgra CDM offers a single enterprise-grade platform to
|
||||
develop extensions for IOT related device types.
|
||||
[![pipeline status](https://gitlab.com/entgra/carbon-device-mgt/badges/master/pipeline.svg)](https://gitlab.com/entgra/carbon-device-mgt/commits/master)
|
@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright (c) 2022, Entgra (pvt) Ltd. (https://entgra.io) All Rights Reserved.
|
||||
*
|
||||
* Entgra (Pvt) Ltd. licenses this file to you under the Apache License,
|
||||
* Version 2.0 (the "License"); you may not use this file except
|
||||
* in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
package org.wso2.carbon.device.mgt.common.group.mgt;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ApiModel(value = "DeviceTypesOfGroups", description = "This class carries whether the groups has device type or not.")
|
||||
public class DeviceTypesOfGroups implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 5562356373277828099L;
|
||||
@ApiModelProperty(name = "hasAndroid", value = "groups has Android devices.")
|
||||
private boolean hasAndroid;
|
||||
@ApiModelProperty(name = "id", value = "groups has iOS devices.")
|
||||
private boolean hasIos;
|
||||
@ApiModelProperty(name = "hasAndroid", value = "groups has Windows devices.")
|
||||
private boolean hasWindows;
|
||||
|
||||
public boolean isHasAndroid() {
|
||||
return hasAndroid;
|
||||
}
|
||||
|
||||
public void setHasAndroid(boolean hasAndroid) {
|
||||
this.hasAndroid = hasAndroid;
|
||||
}
|
||||
|
||||
public boolean isHasIos() {
|
||||
return hasIos;
|
||||
}
|
||||
|
||||
public void setHasIos(boolean hasIos) {
|
||||
this.hasIos = hasIos;
|
||||
}
|
||||
|
||||
public boolean isHasWindows() {
|
||||
return hasWindows;
|
||||
}
|
||||
|
||||
public void setHasWindows(boolean hasWindows) {
|
||||
this.hasWindows = hasWindows;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue