<xs:element name="age">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="120"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
だから私はそれを次のようなJavaコードに変換したい:
public void setAge(int age){
if(age < 0 || age > 120){
//throw some exception
}
//setting the age as it is a valid value
}
JAXBで可能ですか?
いくつかの WebService Client スタブ ジェネレーターがこれを実行しているのを見たことがありますが、これはおそらく axis2 Webservice ですが、確かではありません。