001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package edu.sampleu.demo.kitchensink;
017
018/**
019 * Created with IntelliJ IDEA.
020 * User: Brian
021 * Date: 10/3/12
022 * Time: 10:11 AM
023 * To change this template use File | Settings | File Templates.
024 */
025public class TrainingApplicationReference {
026    private static final long serialVersionUID = -7525378097732916410L;
027    private String name;
028    private String phone;
029    private String address;
030    private String relationship;
031
032    public String getName() {
033        return name;
034    }
035
036    public void setName(String name) {
037        this.name = name;
038    }
039
040    public String getPhone() {
041        return phone;
042    }
043
044    public void setPhone(String phone) {
045        this.phone = phone;
046    }
047
048    public String getAddress() {
049        return address;
050    }
051
052    public void setAddress(String address) {
053        this.address = address;
054    }
055
056    public String getRelationship() {
057        return relationship;
058    }
059
060    public void setRelationship(String relationship) {
061        this.relationship = relationship;
062    }
063}