KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > beans > Identifier


1 package com.dotmarketing.beans;
2
3 /**
4  *
5  * @author maria
6  */

7 public class Identifier extends Inode {
8
9     /**
10      *
11      */

12     private static final long serialVersionUID = 1L;
13
14     public Identifier() {
15         this.setType("identifier");
16     }
17
18     private String JavaDoc URI;
19
20     private long hostInode;
21
22     public long getHostInode() {
23         return hostInode;
24     }
25
26     public void setHostInode(long hostInode) {
27         this.hostInode = hostInode;
28     }
29
30     /**
31      * Returns the uRI.
32      *
33      * @return String
34      */

35     public String JavaDoc getURI() {
36         return URI;
37     }
38
39     /**
40      * Sets the uRI.
41      *
42      * @param uRI
43      * The uRI to set
44      */

45     public void setURI(String JavaDoc uRI) {
46         URI = uRI;
47     }
48
49 }
50
Popular Tags