ORCentral
|
00001 package eu.coform; 00002 00006 public class Location { 00007 00008 private UniqueID locationId; 00009 private String name; 00010 private String webserviceURL; 00011 00012 public Location() {} 00013 00014 public Location(UniqueID locationID, String name, String webserviceURL) { 00015 this.setLocationId(locationID); 00016 this.setName(name); 00017 this.setWebserviceURL(webserviceURL); 00018 } 00019 00020 public void setLocationId(UniqueID locationID) { 00021 this.locationId = locationID; 00022 } 00023 00024 public UniqueID getLocationId() { 00025 return locationId; 00026 } 00027 00028 public void setName(String name) { 00029 this.name = name; 00030 } 00031 00032 public String getName() { 00033 return name; 00034 } 00035 00036 public void setWebserviceURL(String webserviceURL) { 00037 this.webserviceURL = webserviceURL; 00038 } 00039 00040 public String getWebserviceURL() { 00041 return webserviceURL; 00042 } 00043 00044 }