package oasis.names.tc.ebxml_regrep.xsd.query._3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name="StringFilterType") public class StringFilterType extends SimpleFilterType { @XmlAttribute(name="value", required=true) protected String value; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } }