1
2
3
4
5
6
7 package gov.noaa.gdsg.xmldbremote.service.transport;
8
9 /***
10 * An object use to represent a local Resource in another dimension.
11 * @author tns
12 */
13 public class ResourceTransport extends BaseTransport {
14
15 /*** Holds value of property resourceType. */
16 private String resourceType;
17
18 /*** Holds value of property id. */
19 private String id;
20
21 /***
22 * Holds value of property rootNodeName.
23 */
24 private String rootNodeName;
25
26 /*** Creates a new instance of ResourceTransport */
27 public ResourceTransport() {
28 }
29
30
31 /*** Getter for property type.
32 * @return Value of property type.
33 *
34 */
35 public String getResourceType() {
36 return this.resourceType;
37 }
38
39 /***
40 * Setter for property type.
41 * @param resourceType New value of property type.
42 */
43 public void setResourceType(String resourceType) {
44 this.resourceType = resourceType;
45 }
46
47 /*** Getter for property id.
48 * @return Value of property id.
49 *
50 */
51 public String getId() {
52 return this.id;
53 }
54
55 /*** Setter for property id.
56 * @param id New value of property id.
57 *
58 */
59 public void setId(String id) {
60 this.id = id;
61 }
62
63 /***
64 * Getter for property rootNodeType.
65 * @return Value of property rootNodeType.
66 */
67 public String getRootNodeName() {
68
69 return this.rootNodeName;
70 }
71
72 /***
73 * Setter for property rootNodeType.
74 * @param rootNodeType New value of property rootNodeType.
75 */
76 public void setRootNodeName(java.lang.String rootNodeName) {
77
78 this.rootNodeName = rootNodeName;
79 }
80
81 }