/* * 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.core.dto.DeviceType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import java.sql.Timestamp; import java.util.List; @XmlRootElement public class Profile { private int profileId; private String profileName; private int tenantId; private DeviceType deviceType; private Timestamp createdDate; private Timestamp updatedDate; // private List<Feature> featuresList; // Features included in the policies. private List<ProfileFeature> profileFeaturesList; // Features included in the policies. public DeviceType getDeviceType() { return deviceType; } public void setDeviceType(DeviceType deviceType) { this.deviceType = deviceType; } @XmlElement public int getTenantId() { return tenantId; } public void setTenantId(int tenantId) { this.tenantId = tenantId; } /* public List<Feature> getFeaturesList() { return featuresList; } public void setFeaturesList(List<Feature> featuresList) { this.featuresList = featuresList; }*/ @XmlElement public int getProfileId() { return profileId; } public void setProfileId(int profileId) { this.profileId = profileId; } @XmlElement public String getProfileName() { return profileName; } public void setProfileName(String profileName) { this.profileName = profileName; } @XmlElement public Timestamp getCreatedDate() { return createdDate; } public void setCreatedDate(Timestamp createdDate) { this.createdDate = createdDate; } @XmlElement public Timestamp getUpdatedDate() { return updatedDate; } public void setUpdatedDate(Timestamp updatedDate) { this.updatedDate = updatedDate; } @XmlElement public List<ProfileFeature> getProfileFeaturesList() { return profileFeaturesList; } public void setProfileFeaturesList(List<ProfileFeature> profileFeaturesList) { this.profileFeaturesList = profileFeaturesList; } }