de.customed.diag.shared.dto.PluginExtensionDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-api Show documentation
Show all versions of plugin-api Show documentation
custo diagnostic server by custo med is part of the custo diagnostic medical product.
In custo diagnostic, the entire cardiopulmonary functional diagnostics is integrated in one consistent
and modular user interface. Our central software platform allows you to work consistently in all
applications - from the single-user workstation to the multi-site solution.
The newest version!
package de.customed.diag.shared.dto;
import java.util.ArrayList;
import java.util.List;
public class PluginExtensionDTO {
String name;
boolean configurable;
List configuration = new ArrayList<>();
public PluginExtensionDTO(String name, boolean configurable){
this.name = name;
this.configurable = configurable;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isConfigurable() {
return configurable;
}
public void setConfigurable(boolean configurable) {
this.configurable = configurable;
}
public List getConfiguration() {
return configuration;
}
public void setConfiguration(List configuration) {
this.configuration = configuration;
}
}