In my request object I want user to pass a parameter of type string , the
value for this should be any value form a list of values , is there any way
I can specify the possible values using jaxb Annotaions ? I donot want to
use enum ,
here is my
property
@XmlElement(required=true)
public String getOrg() {
return org;
}
public void setOrg(String org) {
this.org = org;
}
the value of this property should be either A ,B or C how can I provide
this information ?
--
View this message in context:
http://cxf.547215.n5.nabble.com/String-property-tp2799561p2799561.html
Sent from the cxf-user mailing list archive at Nabble.com.