/* * Copyright 2012 the original author or authors. * * Licensed 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 grails.validation; import java.math.BigDecimal; import java.util.Collection; import java.util.Date; public class TestClass { private Object[] testArray; private BigDecimal testBigDecimal; private Collection testCollection; private String testString; private Date testDate; private Double testDouble; private String testEmail; private Float testFloat; private Integer testInteger; private Long testLong; private String testURL; public Object[] getTestArray() { return testArray; } public void setTestArray(Object[] testArray) { this.testArray = testArray; } public BigDecimal getTestBigDecimal() { return testBigDecimal; } public void setTestBigDecimal(BigDecimal testBigDecimal) { this.testBigDecimal = testBigDecimal; } public Collection getTestCollection() { return testCollection; } public void setTestCollection(Collection testCollection) { this.testCollection = testCollection; } public Date getTestDate() { return testDate; } public void setTestDate(Date testDate) { this.testDate = testDate; } public Double getTestDouble() { return testDouble; } public void setTestDouble(Double testDouble) { this.testDouble = testDouble; } public String getTestEmail() { return testEmail; } public void setTestEmail(String testEmail) { this.testEmail = testEmail; } public Float getTestFloat() { return testFloat; } public void setTestFloat(Float testFloat) { this.testFloat = testFloat; } public Integer getTestInteger() { return testInteger; } public void setTestInteger(Integer testInteger) { this.testInteger = testInteger; } public String getTestURL() { return testURL; } public void setTestURL(String testURL) { this.testURL = testURL; } public String getTestString() { return testString; } public void setTestString(String testString) { this.testString = testString; } public Long getTestLong() { return testLong; } public void setTestLong(Long testLong) { this.testLong = testLong; } }