/** * Copyright 2004-2017 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 threads; public class Foo { private String column1; private String column2; private String column3; public String getColumn1() { return this.column1; } public void setColumn1(String column1) { this.column1 = column1; } public String getColumn2() { return this.column2; } public void setColumn2(String column2) { this.column2 = column2; } public String getColumn3() { return this.column3; } public void setColumn3(String column3) { this.column3 = column3; } }