/webportal/src/main/java/au/org/emii/portal/mest/WMSLayer.java
Java | 123 lines | 45 code | 14 blank | 64 comment | 0 complexity | d01628dbafabef8d1aa7419b64c40a8d MD5 | raw file
1package au.org.emii.portal.mest; 2 3/** 4 * 5 * @author war398 6 */ 7public class WMSLayer { 8 9 protected String mestAbstract; 10 11 /** 12 * Get the value of Abstract 13 * 14 * @return the value of Abstract 15 */ 16 public String getAbstract() { 17 return mestAbstract; 18 } 19 20 /** 21 * Set the value of Abstract 22 * 23 * @param Abstract new value of Abstract 24 */ 25 public void setAbstract(String Abstract) { 26 this.mestAbstract = Abstract; 27 } 28 protected String serverURL; 29 30 /** 31 * Get the value of ServerURL 32 * 33 * @return the value of ServerURL 34 */ 35 public String getServerURL() { 36 return serverURL; 37 } 38 39 /** 40 * Set the value of ServerURL 41 * 42 * @param ServerURL new value of ServerURL 43 */ 44 public void setServerURL(String ServerURL) { 45 this.serverURL = ServerURL; 46 } 47 protected String layerName; 48 49 /** 50 * Get the value of layerName 51 * 52 * @return the value of layerName 53 */ 54 public String getName() { 55 return layerName; 56 } 57 protected String layerTitle; 58 59 /** 60 * Get the value of LayerTitle 61 * 62 * @return the value of LayerTitle 63 */ 64 public String getTitle() { 65 return layerTitle; 66 } 67 68 /** 69 * Set the value of LayerTitle 70 * 71 * @param LayerTitle new value of LayerTitle 72 */ 73 public void setTitle(String LayerTitle) { 74 this.layerTitle = LayerTitle; 75 } 76 77 /** 78 * Set the value of layerName 79 * 80 * @param layerName new value of layerName 81 */ 82 public void setName(String LayerName) { 83 this.layerName = LayerName; 84 } 85 protected String cswId; 86 87 /** 88 * Get the value of cswId 89 * 90 * @return the value of cswId 91 */ 92 public String getCswId() { 93 return cswId; 94 } 95 96 /** 97 * Set the value of cswId 98 * 99 * @param cswId new value of cswId 100 */ 101 public void setCswId(String CswId) { 102 this.cswId = CswId; 103 } 104 protected String cswServerId; 105 106 /** 107 * Get the value of cswServerId 108 * 109 * @return the value of cswServerId 110 */ 111 public String getCswServerId() { 112 return cswServerId; 113 } 114 115 /** 116 * Set the value of cswServerId 117 * 118 * @param cswServerId new value of cswServerId 119 */ 120 public void setCswServerId(String CswServerId) { 121 this.cswServerId = CswServerId; 122 } 123}