org.igniterealtime.restclient.entity.SystemProperties Maven / Gradle / Ivy
package org.igniterealtime.restclient.entity;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* The Class SystemProperties.
*/
@XmlRootElement(name = "properties")
public class SystemProperties {
/** The properties. */
List properties;
/**
* Instantiates a new system properties.
*/
public SystemProperties() {
}
/**
* Gets the properties.
*
* @return the properties
*/
@XmlElement(name = "property")
public List getProperties() {
return properties;
}
/**
* Sets the properties.
*
* @param properties the new properties
*/
public void setProperties(List properties) {
this.properties = properties;
}
}