eu.xenit.apix.properties.Properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.properties;
import java.util.List;
/*
* Kept it return List
* to make it possible to extend the response with additional data
*/
public class Properties {
private List properties;
public Properties(List properties) {
this.properties = properties;
}
public List getProperties() {
return properties;
}
public void setProperties(List properties) {
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy