001 //$HeadURL: svn+ssh://developername@svn.wald.intevation.org/deegree/base/trunk/resources/eclipse/files_template.xml $ 002 /*---------------------------------------------------------------------------- 003 This file is part of deegree, http://deegree.org/ 004 Copyright (C) 2001-2009 by: 005 - Department of Geography, University of Bonn - 006 and 007 - lat/lon GmbH - 008 009 This library is free software; you can redistribute it and/or modify it under 010 the terms of the GNU Lesser General Public License as published by the Free 011 Software Foundation; either version 2.1 of the License, or (at your option) 012 any later version. 013 This library is distributed in the hope that it will be useful, but WITHOUT 014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 015 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 016 details. 017 You should have received a copy of the GNU Lesser General Public License 018 along with this library; if not, write to the Free Software Foundation, Inc., 019 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 020 021 Contact information: 022 023 lat/lon GmbH 024 Aennchenstr. 19, 53177 Bonn 025 Germany 026 http://lat-lon.de/ 027 028 Department of Geography, University of Bonn 029 Prof. Dr. Klaus Greve 030 Postfach 1147, 53001 Bonn 031 Germany 032 http://www.geographie.uni-bonn.de/deegree/ 033 034 e-mail: info@deegree.org 035 ----------------------------------------------------------------------------*/ 036 package org.deegree.portal.cataloguemanager.control; 037 038 import java.io.Serializable; 039 040 /** 041 * TODO add class documentation here 042 * 043 * @author <a href="mailto:name@deegree.org">Andreas Poth</a> 044 * @author last edited by: $Author: admin $ 045 * 046 * @version $Revision: $, $Date: $ 047 */ 048 public class RespPartyConfiguration implements Serializable { 049 050 private static final long serialVersionUID = 14994290998505147L; 051 052 private String displayName; 053 054 private String individualName; 055 056 private String organisationName; 057 058 private String role; 059 060 private String street; 061 062 private String city; 063 064 private String postalCode; 065 066 private String country; 067 068 private String voice; 069 070 private String facsimile; 071 072 private String email; 073 074 /** 075 * @return the displayName 076 */ 077 public String getDisplayName() { 078 return displayName; 079 } 080 081 /** 082 * @param displayName 083 * the displayName to set 084 */ 085 public void setDisplayName( String displayName ) { 086 this.displayName = displayName; 087 } 088 089 /** 090 * @return the individualName 091 */ 092 public String getIndividualName() { 093 return individualName; 094 } 095 096 /** 097 * @param individualName 098 * the individualName to set 099 */ 100 public void setIndividualName( String individualName ) { 101 this.individualName = individualName; 102 } 103 104 /** 105 * @return the organisationName 106 */ 107 public String getOrganisationName() { 108 return organisationName; 109 } 110 111 /** 112 * @param organisationName 113 * the organisationName to set 114 */ 115 public void setOrganisationName( String organisationName ) { 116 this.organisationName = organisationName; 117 } 118 119 /** 120 * @return the role 121 */ 122 public String getRole() { 123 return role; 124 } 125 126 /** 127 * @param role 128 * the role to set 129 */ 130 public void setRole( String role ) { 131 this.role = role; 132 } 133 134 /** 135 * @return the street 136 */ 137 public String getStreet() { 138 return street; 139 } 140 141 /** 142 * @param street 143 * the street to set 144 */ 145 public void setStreet( String street ) { 146 this.street = street; 147 } 148 149 /** 150 * @return the city 151 */ 152 public String getCity() { 153 return city; 154 } 155 156 /** 157 * @param city 158 * the city to set 159 */ 160 public void setCity( String city ) { 161 this.city = city; 162 } 163 164 /** 165 * @return the postalCode 166 */ 167 public String getPostalCode() { 168 return postalCode; 169 } 170 171 /** 172 * @param postalCode 173 * the postalCode to set 174 */ 175 public void setPostalCode( String postalCode ) { 176 this.postalCode = postalCode; 177 } 178 179 /** 180 * @return the country 181 */ 182 public String getCountry() { 183 return country; 184 } 185 186 /** 187 * @param country 188 * the country to set 189 */ 190 public void setCountry( String country ) { 191 this.country = country; 192 } 193 194 /** 195 * @return the voice 196 */ 197 public String getVoice() { 198 return voice; 199 } 200 201 /** 202 * @param voice 203 * the voice to set 204 */ 205 public void setVoice( String voice ) { 206 this.voice = voice; 207 } 208 209 /** 210 * @return the facsimile 211 */ 212 public String getFacsimile() { 213 return facsimile; 214 } 215 216 /** 217 * @param facsimile 218 * the facsimile to set 219 */ 220 public void setFacsimile( String facsimile ) { 221 this.facsimile = facsimile; 222 } 223 224 /** 225 * @return the email 226 */ 227 public String getEmail() { 228 return email; 229 } 230 231 /** 232 * @param email 233 * the email to set 234 */ 235 public void setEmail( String email ) { 236 this.email = email; 237 } 238 239 }