diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/Feature.java b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/Feature.java index cbe7e55ae5..9183c810be 100644 --- a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/Feature.java +++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/Feature.java @@ -20,10 +20,19 @@ package org.wso2.carbon.policy.mgt.common; public class Feature { + private int id; private String code; private String name; private Object attribute; + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + public String getCode() { return code; } diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/impl/PolicyManagement.java b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/impl/PolicyManagement.java index db14d8e1fc..6b2a9ee33f 100644 --- a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/impl/PolicyManagement.java +++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/impl/PolicyManagement.java @@ -63,4 +63,19 @@ public class PolicyManagement implements PolicyManagerService { public Policy getPolicyOfRole(String roleName) throws FeatureManagementException, PolicyManagementException { return null; } + + @Override + public boolean isPolicyAvailableForDevice(String deviceId, String deviceType) throws PolicyManagementException { + return false; + } + + @Override + public boolean isPolicyUsed(String deviceId, String deviceType) throws PolicyManagementException { + return false; + } + + @Override + public void setPolicyUsed(String deviceId, String deviceType, Policy policy) throws PolicyManagementException { + + } } diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/FeatureManagerService.java b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/FeatureManagerService.java new file mode 100644 index 0000000000..6ed982cd2e --- /dev/null +++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/FeatureManagerService.java @@ -0,0 +1,38 @@ +/* +* Copyright (c) 2014 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.spi; + +import org.wso2.carbon.policy.mgt.common.Feature; +import org.wso2.carbon.policy.mgt.common.FeatureManagementException; + +import java.util.List; + +public interface FeatureManagerService { + + void addFeature(Feature feature) throws FeatureManagementException; + + void editFeature(Feature feature) throws FeatureManagementException; + + void removeFeature(int featureId) throws FeatureManagementException; + + List getFeatures() throws FeatureManagementException; + + List getFeaturesOfPolicy(int policyId) throws FeatureManagementException; +} diff --git a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/PolicyManagerService.java b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/PolicyManagerService.java index 063ac757c9..ae55266618 100644 --- a/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/PolicyManagerService.java +++ b/components/policy-mgt/org.wso2.carbon.policy.mgt.common/src/main/java/org/wso2/carbon/policy/mgt/common/spi/PolicyManagerService.java @@ -30,6 +30,7 @@ public interface PolicyManagerService { /** * This method adds a policy to the platform + * * @param policy * @return primary key (generated key) */ @@ -38,6 +39,7 @@ public interface PolicyManagerService { /** * This method adds a policy per device which should be implemented by the related plugins. + * * @param deviceId * @param deviceType * @param policy @@ -48,15 +50,17 @@ public interface PolicyManagerService { /** * This method adds a policy to device type by the related device type plugins. + * * @param deviceType * @param policy * @return primary key (generated key) */ - int addPolicyToDeviceType(String deviceType,Policy policy) throws FeatureManagementException, PolicyManagementException; + int addPolicyToDeviceType(String deviceType, Policy policy) throws FeatureManagementException, PolicyManagementException; /** * This method adds the policy to specific role. + * * @param roleName * @param policy * @return primary key (generated key) @@ -65,30 +69,34 @@ public interface PolicyManagerService { /** * This method returns the policy of whole platform + * * @return */ - Policy getPolicy(); + Policy getPolicy(); /** * This method gives the device specific policy. + * * @param deviceId * @param deviceType - * @return Policy + * @return Policy */ Policy getPolicyOfDevice(String deviceId, String deviceType) throws FeatureManagementException, PolicyManagementException; /** * This method returns the device type specific policy. + * * @param deviceType - * @return Policy + * @return Policy */ Policy getPolicyOfDeviceType(String deviceType) throws FeatureManagementException, PolicyManagementException; /** * This method returns the role specific policy. + * * @param roleName * @return */ @@ -96,4 +104,11 @@ public interface PolicyManagerService { Policy getPolicyOfRole(String roleName) throws FeatureManagementException, PolicyManagementException; + boolean isPolicyAvailableForDevice(String deviceId, String deviceType) throws PolicyManagementException; + + + boolean isPolicyUsed(String deviceId, String deviceType) throws PolicyManagementException; + + + void setPolicyUsed(String deviceId, String deviceType, Policy policy) throws PolicyManagementException; } diff --git a/product/modules/distribution/pom.xml b/product/modules/distribution/pom.xml index ba6de3b91e..ab110a0ff2 100644 --- a/product/modules/distribution/pom.xml +++ b/product/modules/distribution/pom.xml @@ -105,6 +105,8 @@ + + @@ -137,7 +139,7 @@ og4j.logger.net.sf.ehcache=ERROR - + @@ -147,6 +149,8 @@ package + + @@ -98,11 +89,11 @@ 755 - - src/repository/resources/stratos_root - wso2cdm-${project.version}/repository/deployment/server/webapps/STRATOS_ROOT - 755 - + ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/modules ${pom.artifactId}-${project.version}/modules/ @@ -110,50 +101,14 @@ */** - - - - src/repository/conf wso2cdm-${project.version}/repository/conf **/api-manager.xml **/sso-idp-config.xml - + @@ -239,35 +194,42 @@ - + 755 + + src/repository/conf/tomcat/context.xml wso2cdm-${project.version}/repository/conf/tomcat true 644 - + INSTALL.txt @@ -307,18 +269,14 @@ - + + - - target/wso2carbon-core-${carbon.kernel.version}/repository/conf/log4j.properties - wso2cdm-${project.version}/repository/conf/ - true - src/repository/conf/multitenancy/cloud-services-desc.xml wso2cdm-${project.version}/repository/conf/multitenancy/ @@ -354,15 +312,18 @@ - ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/tomcat/webapp-classloading.xml + + ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/tomcat/webapp-classloading.xml + ${pom.artifactId}-${pom.version}/repository/conf/tomcat true 644 - + - ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/cdm-config.xml + ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/cdm-config.xml + ${pom.artifactId}-${pom.version}/repository/conf true 644 @@ -370,19 +331,21 @@ - ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/tomcat/webapp-classloading-environments.xml + + ../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/conf/tomcat/webapp-classloading-environments.xml + ${pom.artifactId}-${pom.version}/repository/conf/tomcat true 644 - +