getOid() {
- return this.oid;
- }
-
-}
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/GetPolicies.java b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/GetPolicies.java
deleted file mode 100644
index 0cf2535b9..000000000
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/GetPolicies.java
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * Copyright (c) 2016, 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.device.mgt.mobile.windows.api.services.xcep.beans;
-
-import javax.xml.bind.annotation.*;
-
-/**
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="client" type="{http://schemas.microsoft
- * .com/windows/pki/2009/01/enrollmentpolicy}Client"/>
- * <element name="requestFilter" type="{http://schemas.microsoft
- * .com/windows/pki/2009/01/enrollmentpolicy}RequestFilter"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "client",
- "requestFilter"
-})
-@XmlRootElement(name = "GetPolicies")
-@SuppressWarnings("unused")
-public class GetPolicies {
-
- @XmlElement(required = true)
- protected Client client;
- @XmlElement(required = true, nillable = true)
- protected RequestFilter requestFilter;
-
- /**
- * Gets the value of the client property.
- *
- * @return possible object is
- * {@link Client }
- */
- public Client getClient() {
- return client;
- }
-
- /**
- * Sets the value of the client property.
- *
- * @param value allowed object is
- * {@link Client }
- */
- public void setClient(Client value) {
- this.client = value;
- }
-
- /**
- * Gets the value of the requestFilter property.
- *
- * @return possible object is
- * {@link RequestFilter }
- */
- public RequestFilter getRequestFilter() {
- return requestFilter;
- }
-
- /**
- * Sets the value of the requestFilter property.
- *
- * @param value allowed object is
- * {@link RequestFilter }
- */
- public void setRequestFilter(RequestFilter value) {
- this.requestFilter = value;
- }
-
-}
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/GetPoliciesResponse.java b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/GetPoliciesResponse.java
deleted file mode 100644
index fe824d8c6..000000000
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/GetPoliciesResponse.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * Copyright (c) 2016, 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.device.mgt.mobile.windows.api.services.xcep.beans;
-
-import javax.xml.bind.annotation.*;
-
-/**
- * Java class for anonymous complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="response" type="{http://schemas.microsoft
- * .com/windows/pki/2009/01/enrollmentpolicy}Response"/>
- * <element name="cAs" type="{http://schemas.microsoft
- * .com/windows/pki/2009/01/enrollmentpolicy}CACollection"/>
- * <element name="oIDs" type="{http://schemas.microsoft
- * .com/windows/pki/2009/01/enrollmentpolicy}OIDCollection"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "response",
- "cAs",
- "oiDs"
-})
-@XmlRootElement(name = "GetPoliciesResponse")
-@SuppressWarnings("unused")
-public class GetPoliciesResponse {
-
- @XmlElement(required = true, nillable = true)
- protected Response response;
- @XmlElement(required = true, nillable = true)
- protected CACollection cAs;
- @XmlElement(name = "oIDs", required = true, nillable = true)
- protected OIDCollection oiDs;
-
- /**
- * Gets the value of the response property.
- *
- * @return possible object is
- * {@link Response }
- */
- public Response getResponse() {
- return response;
- }
-
- /**
- * Sets the value of the response property.
- *
- * @param value allowed object is
- * {@link Response }
- */
- public void setResponse(Response value) {
- this.response = value;
- }
-
- /**
- * Gets the value of the cAs property.
- *
- * @return possible object is
- * {@link CACollection }
- */
- public CACollection getCAs() {
- return cAs;
- }
-
- /**
- * Sets the value of the cAs property.
- *
- * @param value allowed object is
- * {@link CACollection }
- */
- public void setCAs(CACollection value) {
- this.cAs = value;
- }
-
- /**
- * Gets the value of the oiDs property.
- *
- * @return possible object is
- * {@link OIDCollection }
- */
- public OIDCollection getOIDs() {
- return oiDs;
- }
-
- /**
- * Sets the value of the oiDs property.
- *
- * @param value allowed object is
- * {@link OIDCollection }
- */
- public void setOIDs(OIDCollection value) {
- this.oiDs = value;
- }
-
-}
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/KeyArchivalAttributes.java b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/KeyArchivalAttributes.java
deleted file mode 100644
index c9d955d97..000000000
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/KeyArchivalAttributes.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (c) 2016, 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.device.mgt.mobile.windows.api.services.xcep.beans;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-
-/**
- * Java class for KeyArchivalAttributes complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType name="KeyArchivalAttributes">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="symmetricAlgorithmOIDReference" type="{http://www.w3
- * .org/2001/XMLSchema}int"/>
- * <element name="symmetricAlgorithmKeyLength" type="{http://www.w3
- * .org/2001/XMLSchema}unsignedInt"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "KeyArchivalAttributes", propOrder = {
- "symmetricAlgorithmOIDReference",
- "symmetricAlgorithmKeyLength"
-})
-@SuppressWarnings("unused")
-public class KeyArchivalAttributes {
-
- protected int symmetricAlgorithmOIDReference;
- @XmlSchemaType(name = "unsignedInt")
- protected long symmetricAlgorithmKeyLength;
-
- /**
- * Gets the value of the symmetricAlgorithmOIDReference property.
- */
- public int getSymmetricAlgorithmOIDReference() {
- return symmetricAlgorithmOIDReference;
- }
-
- /**
- * Sets the value of the symmetricAlgorithmOIDReference property.
- */
- public void setSymmetricAlgorithmOIDReference(int value) {
- this.symmetricAlgorithmOIDReference = value;
- }
-
- /**
- * Gets the value of the symmetricAlgorithmKeyLength property.
- */
- public long getSymmetricAlgorithmKeyLength() {
- return symmetricAlgorithmKeyLength;
- }
-
- /**
- * Sets the value of the symmetricAlgorithmKeyLength property.
- */
- public void setSymmetricAlgorithmKeyLength(long value) {
- this.symmetricAlgorithmKeyLength = value;
- }
-
-}
diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/OID.java b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/OID.java
deleted file mode 100644
index 1638fd872..000000000
--- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/xcep/beans/OID.java
+++ /dev/null
@@ -1,166 +0,0 @@
-/*
- * Copyright (c) 2016, 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.device.mgt.mobile.windows.api.services.xcep.beans;
-
-import org.w3c.dom.Element;
-
-import javax.xml.bind.annotation.*;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * Java class for OID complex type.
- *
- * The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType name="OID">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="group" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- * <element name="oIDReferenceID" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="defaultName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <any processContents='lax' maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "OID", propOrder = {
- "value",
- "group",
- "oidReferenceID",
- "defaultName",
- "any"
-})
-@SuppressWarnings("unused")
-public class OID {
-
- @XmlElement(required = true)
- protected String value;
- @XmlSchemaType(name = "unsignedInt")
- protected long group;
- @XmlElement(name = "oIDReferenceID")
- protected int oidReferenceID;
- @XmlElement(required = true, nillable = true)
- protected String defaultName;
- @XmlAnyElement(lax = true)
- protected List