forked from community/device-mgt-core
parent
69bbd8d512
commit
aa6bb02127
@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright (c) 2020, Entgra (pvt) Ltd. (http://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.device.details;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ApiModel(value = "DeviceLocationHistory", description = "This class carries all information related to the device location History" +
|
||||
"details provided by a device.")
|
||||
|
||||
public class DeviceLocationHistorySnapshot extends DeviceLocation implements Serializable {
|
||||
|
||||
@ApiModelProperty(name = "geoHash", value = "Geo Hash", required = true)
|
||||
private String geoHash;
|
||||
@ApiModelProperty(name = "tenantId", value = "Tenant Id.", required = true)
|
||||
private int tenantId;
|
||||
@ApiModelProperty(name = "owner", value = "Owner.", required = true)
|
||||
private String owner;
|
||||
|
||||
public DeviceLocationHistorySnapshot() {
|
||||
}
|
||||
|
||||
public String getGeoHash() {
|
||||
return geoHash;
|
||||
}
|
||||
|
||||
public void setGeoHash(String geoHash) {
|
||||
this.geoHash = geoHash;
|
||||
}
|
||||
|
||||
public int getTenantId() {
|
||||
return tenantId;
|
||||
}
|
||||
|
||||
public void setTenantId(int tenantId) {
|
||||
this.tenantId = tenantId;
|
||||
}
|
||||
|
||||
public String getOwner() {
|
||||
return owner;
|
||||
}
|
||||
|
||||
public void setOwner(String owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue