blob: d1a073690043d731007198ad59e861a8325d6cdf [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.
*/
package org.apache.myfaces.extensions.validator.test.beanval.view;
import org.apache.myfaces.extensions.validator.beanval.annotation.BeanValidation;
import org.apache.myfaces.extensions.validator.beanval.annotation.ModelValidation;
import org.apache.myfaces.extensions.validator.test.beanval.model.ModelValidationTestCase1Bean;
public class ModelValidationTestCase1PageBean
{
private ModelValidationTestCase1Bean model1 = new ModelValidationTestCase1Bean();
private ModelValidationTestCase1Bean model2 = new ModelValidationTestCase1Bean();
@BeanValidation(modelValidation = @ModelValidation(isActive = true))
private ModelValidationTestCase1Bean model3 = new ModelValidationTestCase1Bean();
@BeanValidation(modelValidation = @ModelValidation(isActive = true, displayInline = true))
private ModelValidationTestCase1Bean model4 = new ModelValidationTestCase1Bean();
@BeanValidation(conditions = "#{currentUser.userRole}", modelValidation = @ModelValidation(isActive = true))
private ModelValidationTestCase1Bean model5 = new ModelValidationTestCase1Bean();
@BeanValidation(modelValidation = @ModelValidation(isActive = true))
public ModelValidationTestCase1Bean getModel1()
{
return model1;
}
@BeanValidation(modelValidation = @ModelValidation(isActive = true, displayInline = true))
public ModelValidationTestCase1Bean getModel2()
{
return model2;
}
public ModelValidationTestCase1Bean getModel3()
{
return model3;
}
public ModelValidationTestCase1Bean getModel4()
{
return model4;
}
public ModelValidationTestCase1Bean getModel5()
{
return model5;
}
}