/* * Copyright (c) 2015 WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. 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.policy.mgt.common; import org.wso2.carbon.device.mgt.common.Device; import org.wso2.carbon.device.mgt.common.DeviceIdentifier; import org.wso2.carbon.device.mgt.core.dto.DeviceType; import java.sql.Timestamp; import java.util.List; import java.util.Map; //TODO : public class PIPDevice { private Device device; private DeviceType deviceType; private DeviceIdentifier deviceIdentifier; private String ownershipType; private List<String> userIds; private String roles[]; private String altitude; private String longitude; private Timestamp timestamp; /*This will be used to record attributes to which would come from other PDPs*/ Map<String, Object> attributes; public Device getDevice() { return device; } public void setDevice(Device device) { this.device = device; } public DeviceType getDeviceType() { return deviceType; } public void setDeviceType(DeviceType deviceType) { this.deviceType = deviceType; } public String getOwnershipType() { return ownershipType; } public void setOwnershipType(String ownershipType) { this.ownershipType = ownershipType; } public List<String> getUserIds() { return userIds; } public void setUserIds(List<String> userIds) { this.userIds = userIds; } public String[] getRoles() { return roles; } public void setRoles(String roles[]) { this.roles = roles; } public String getAltitude() { return altitude; } public void setAltitude(String altitude) { this.altitude = altitude; } public String getLongitude() { return longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } public Timestamp getTimestamp() { return timestamp; } public void setTimestamp(Timestamp timestamp) { this.timestamp = timestamp; } public Map<String, Object> getAttributes() { return attributes; } public void setAttributes(Map<String, Object> attributes) { this.attributes = attributes; } public DeviceIdentifier getDeviceIdentifier() { return deviceIdentifier; } public void setDeviceIdentifier(DeviceIdentifier deviceIdentifier) { this.deviceIdentifier = deviceIdentifier; } }