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

de.intarsys.tools.jaxb.Property 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.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "property")
public class Property {

	@XmlAttribute(name = "name", required = true)
	private String name;
	@XmlAttribute(name = "value", required = true)
	private String value;

	public Property() {
	}

	public Property(String name, String value) {
		super();
		this.name = name;
		this.value = value;
	}

	public String getName() {
		return name;
	}

	public String getValue() {
		return value;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy