blob: 75c405e1a12671f7a393afd4ad233896cc36f93b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<constraint-mappings
xmlns="http://jboss.org/xml/ns/javax/validation/mapping"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://jboss.org/xml/ns/javax/validation/mapping validation-mapping-1.0.xsd">
<default-package>org.apache.bval.jsr303.example</default-package>
<bean class="XmlEntitySampleBean" ignore-annotations="false">
<class ignore-annotations="true"/>
<field name="zipCode">
<!--@FrenchZipCode(size=3)-->
<constraint annotation="org.apache.bval.constraints.FrenchZipCode">
<element name="size">
<value>3</value>
</element>
</constraint>
</field>
<field name="valueCode">
<valid/>
<!-- @HasValue({ 0, 20 }) -->
<constraint annotation="org.apache.bval.constraints.HasValue">
<element name="value">
<value>0</value>
<value>20</value>
</element>
</constraint>
</field>
<getter name="firstName">
<valid/>
<!-- @Size(message="Size is limited",
groups={First.class, Default.class},
max=10
)
-->
<constraint annotation="javax.validation.constraints.Size">
<message>Size is limited</message>
<groups>
<value>org.apache.bval.jsr303.example.First</value>
<value>javax.validation.groups.Default</value>
</groups>
<element name="max">10</element>
</constraint>
</getter>
</bean>
<constraint-definition annotation="javax.validation.constraints.Size">
<validated-by include-existing-validators="false">
<value>org.apache.bval.constraints.SizeValidatorForString</value>
</validated-by>
</constraint-definition>
</constraint-mappings>