blob: d377fe0189528bdcccc0a38ed90bedd72ff72960 [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.test;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* Test bean.
*
* @author Mark Woon
*/
public class User implements UserMarker {
private Collection collection;
private List<String> 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;
}
public void setEmail(String email) {
this.email = email;
}
public String getEmail() {
return email;
}
public void setEmail2(String email) {
email2 = email;
}
public String getEmail2() {
return email2;
}
public void setList(List<String> l) {
list = l;
}
public List<String> getList() {
return list;
}
public void setMap(Map m) {
map = m;
}
public Map getMap() {
return map;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}