AnnotationUser.java

/*
 * 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.
 */
package org.apache.struts2.test;

import org.apache.struts2.conversion.annotations.ConversionRule;
import org.apache.struts2.conversion.annotations.TypeConversion;
import org.apache.struts2.util.KeyProperty;
import org.apache.struts2.validator.annotations.EmailValidator;
import org.apache.struts2.validator.annotations.ExpressionValidator;
import org.apache.struts2.validator.annotations.FieldExpressionValidator;
import org.apache.struts2.validator.annotations.RequiredFieldValidator;
import org.apache.struts2.validator.annotations.Validations;

import java.util.Collection;
import java.util.List;
import java.util.Map;


/**
 * Test bean.
 */
@Validations(
    expressions = {
        @ExpressionValidator(expression = "email.startsWith('mark')", message = "Email does not start with mark"),
        @ExpressionValidator(expression = "email2.startsWith('mark')", message = "Email2 does not start with mark")
    }
)
public class AnnotationUser implements AnnotationUserMarker {

    private Collection collection;
    private List list;
    private Map map;
    private String email;
    private String email2;
    private String name;


    public void setCollection(Collection collection) {
        this.collection = collection;
    }

    public Collection getCollection() {
        return collection;
    }

    @EmailValidator(shortCircuit = true, message = "Not a valid e-mail.")
    @FieldExpressionValidator(expression = "email.endsWith('mycompany.com')", message = "Email not from the right company.")
    public void setEmail(String email) {
        this.email = email;
    }

    public String getEmail() {
        return email;
    }

    @EmailValidator(message = "Not a valid e-mail2.")
    @FieldExpressionValidator(expression = "email2.endsWith('mycompany.com')", message = "Email2 not from the right company.")
    public void setEmail2(String email) {
        email2 = email;
    }

    public String getEmail2() {
        return email2;
    }

    public void setList(List l) {
        list = l;
    }

    @KeyProperty(value = "name")
    @TypeConversion(converterClass = String.class, rule = ConversionRule.COLLECTION)
    public List getList() {
        return list;
    }

    @TypeConversion(converterClass = String.class, rule = ConversionRule.MAP)
    public void setMap(Map m) {
        map = m;
    }

    public Map getMap() {
        return map;
    }

    @RequiredFieldValidator(key = "name.key", message = "You must enter a value for name.")
    public void setName(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }
}