blob: ae51b9ebba9ff744c61cc9bb12102acde7748cf9 [file] [log] [blame]
<!--
~ 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.
-->
<!DOCTYPE validators PUBLIC
"-//OpenSymphony Group//XWork Validator 1.0.2//EN"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
<validators>
<field name="host">
<field-validator type="requiredstring">
<message key="jabberNotifier.host.required"/>
</field-validator>
</field>
<field name="port">
<field-validator type="int">
<param name="min">0</param>
<param name="max">65535</param>
<message key="jabberNotifier.port.invalid"/>
</field-validator>
</field>
<field name="login">
<field-validator type="requiredstring">
<message key="jabberNotifier.login.required"/>
</field-validator>
</field>
<field name="password">
<field-validator type="requiredstring">
<message key="jabberNotifier.password.required"/>
</field-validator>
</field>
<field name="address">
<field-validator type="requiredstring">
<message key="jabberNotifier.address.required"/>
</field-validator>
<field-validator type="email">
<message key="jabberNotifier.address.invalid"/>
</field-validator>
</field>
</validators>