added XmlAccessorType to root pom

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

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

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

Loading…
Cancel
Save