mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Remove retrieving device type extension class from deployer file
This commit is contained in:
parent
a246c16eb6
commit
d6d91e4bc2
@ -105,8 +105,6 @@ public class DeviceTypeConfiguration {
|
|||||||
@XmlElementWrapper(name = "StartupOperationConfig")
|
@XmlElementWrapper(name = "StartupOperationConfig")
|
||||||
@XmlElement(name = "Operation", required = true)
|
@XmlElement(name = "Operation", required = true)
|
||||||
protected List<String> startupOperations;
|
protected List<String> startupOperations;
|
||||||
@XmlElement(name = "DeviceTypeManagerExtensionConfig")
|
|
||||||
private DeviceTypeManagerExtensionConfig deviceTypeExtensionConfig;
|
|
||||||
|
|
||||||
public List<String> getOperations() {
|
public List<String> getOperations() {
|
||||||
return operations;
|
return operations;
|
||||||
@ -404,25 +402,4 @@ public class DeviceTypeConfiguration {
|
|||||||
public void setStartupOperations(List<String> startupOperations) {
|
public void setStartupOperations(List<String> startupOperations) {
|
||||||
this.startupOperations = startupOperations;
|
this.startupOperations = startupOperations;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the value of DeviceTypeManagerExtensionConfig
|
|
||||||
*
|
|
||||||
* @return possible object is
|
|
||||||
* {@link DeviceTypeManagerExtensionConfig}
|
|
||||||
*/
|
|
||||||
public DeviceTypeManagerExtensionConfig getDeviceTypeExtensionConfig() {
|
|
||||||
return deviceTypeExtensionConfig;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the value for DeviceTypeManagerExtensionConfig
|
|
||||||
*
|
|
||||||
* @param deviceTypeExtensionConfig possible object is
|
|
||||||
* {@link DeviceTypeManagerExtensionConfig}
|
|
||||||
*/
|
|
||||||
public void setDeviceTypeExtensionConfig(
|
|
||||||
DeviceTypeManagerExtensionConfig deviceTypeExtensionConfig) {
|
|
||||||
this.deviceTypeExtensionConfig = deviceTypeExtensionConfig;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,19 +0,0 @@
|
|||||||
package org.wso2.carbon.device.mgt.extensions.device.type.template.config;
|
|
||||||
|
|
||||||
import javax.xml.bind.annotation.XmlElement;
|
|
||||||
import javax.xml.bind.annotation.XmlRootElement;
|
|
||||||
|
|
||||||
@XmlRootElement(name = "DeviceTypeManagerExtensionConfig")
|
|
||||||
public class DeviceTypeManagerExtensionConfig {
|
|
||||||
|
|
||||||
private String extensionClass;
|
|
||||||
|
|
||||||
@XmlElement(name = "ExtensionClass", required = true)
|
|
||||||
public String getExtensionClass() {
|
|
||||||
return extensionClass;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExtensionClass(String extensionClass) {
|
|
||||||
this.extensionClass = extensionClass;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user