All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.intarsys.tools.jaxb.Properties Maven / Gradle / Ivy

There is a newer version: 4.11
Show newest version
package de.intarsys.tools.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "properties")
public class Properties {

	@XmlElement(name = "property")
	private Property[] properties;

	public Properties() {
	}

	public Property[] getProperties() {
		return properties;
	}

	public void setProperties(Property[] properties) {
		this.properties = properties;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy