blob: 2050726f7fba792a5bef42114a08df38bed22aa6 [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 com.opensymphony.xwork2.validator;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.TestBean;
import java.util.ArrayList;
import java.util.List;
/**
* VisitorValidatorTestAction
*
* @author Jason Carreira
* Created Aug 4, 2003 1:00:04 AM
*/
public class VisitorValidatorTestAction extends ActionSupport {
private List<TestBean> testBeanList = new ArrayList<>();
private String context;
private TestBean bean = new TestBean();
private TestBean[] testBeanArray;
public VisitorValidatorTestAction() {
testBeanArray = new TestBean[5];
for (int i = 0; i < 5; i++) {
testBeanArray[i] = new TestBean();
testBeanList.add(new TestBean());
}
}
public void setBean(TestBean bean) {
this.bean = bean;
}
public TestBean getBean() {
return bean;
}
public void setContext(String context) {
this.context = context;
}
public String getContext() {
return context;
}
public void setTestBeanArray(TestBean[] testBeanArray) {
this.testBeanArray = testBeanArray;
}
public TestBean[] getTestBeanArray() {
return testBeanArray;
}
public void setTestBeanList(List<TestBean> testBeanList) {
this.testBeanList = testBeanList;
}
public List<TestBean> getTestBeanList() {
return testBeanList;
}
}