1
2
3
4
5
6
7 package gov.noaa.gdsg.xmldbremote.service.transport;
8
9 /***
10 * An simple object that is used to represent a local object in another dimension.
11 * @author tns
12 * @version $Id: CollectionTransport.java,v 1.1 2004/10/29 18:06:13 mrxtravis Exp $
13 */
14 public class CollectionTransport extends BaseTransport {
15
16 /*** Holds value of property name. */
17 private String name;
18
19 /*** Creates a new instance of CollectionTransport */
20 public CollectionTransport() {
21 }
22
23 /*** Getter for property collectionId.
24 * @return Value of property collectionId.
25 *
26 */
27 public String getName() {
28 return this.name;
29 }
30
31 /*** Setter for property name.
32 * @param name New value of property name.
33 *
34 */
35 public void setName(String name) {
36 this.name = name;
37 }
38
39 }