added XmlAccessorType to root pom

revert-70aa11f8
ayyoob 8 years ago
parent e3ef66aa1a
commit c48f879205

@ -66,6 +66,10 @@
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
</plugin>
<plugin> <plugin>
<groupId>org.apache.felix</groupId> <groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId> <artifactId>maven-bundle-plugin</artifactId>
@ -85,7 +89,7 @@
javax.sql, javax.sql,
javax.xml.bind, javax.xml.bind,
javax.xml.bind.annotation, javax.xml.bind.annotation,
javax.xml.parsers, javax.xml.parsers; version="${javax.xml.parsers.import.pkg.version}",
org.apache.axis2.context, org.apache.axis2.context,
org.apache.axis2.deployment.*, org.apache.axis2.deployment.*,
org.apache.commons.lang, org.apache.commons.lang,

@ -29,12 +29,13 @@ import javax.xml.bind.annotation.XmlType;
* *
* *
*/ */
//@XmlAccessorType(XmlAccessType.FIELD)
//@XmlType(name = "DeviceManagementConfiguration", propOrder = { //@XmlType(name = "DeviceManagementConfiguration", propOrder = {
// "deviceType", // "deviceType",
// "managementRepository", // "managementRepository",
// "pushNotificationConfiguration" // "pushNotificationConfiguration"
//}) //})
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "DeviceManagementConfiguration") @XmlRootElement(name = "DeviceManagementConfiguration")
public class DeviceManagementConfiguration { public class DeviceManagementConfiguration {
@ -45,6 +46,9 @@ public class DeviceManagementConfiguration {
@XmlElement(name = "PushNotificationConfiguration", required = true) @XmlElement(name = "PushNotificationConfiguration", required = true)
protected PushNotificationConfiguration pushNotificationConfiguration; protected PushNotificationConfiguration pushNotificationConfiguration;
private DeviceManagementConfiguration() {
}
/** /**
* Gets the value of the device property. * Gets the value of the device property.
* *

Loading…
Cancel
Save