Revision 1472
Added by Jing Tao almost 22 years ago
src/edu/ucsb/nceas/metacat/AccessSection.java | ||
---|---|---|
39 | 39 |
private String accessSectionId = null; |
40 | 40 |
private String permissionOrder = null; |
41 | 41 |
private Vector accessRules = new Vector(); |
42 |
private String references = null; |
|
42 | 43 |
|
43 | 44 |
/** Set the a accessSectionId */ |
44 | 45 |
public void setAccessSectionId(String myId) |
... | ... | |
80 | 81 |
return this.accessRules; |
81 | 82 |
} |
82 | 83 |
|
84 |
/** Set a references */ |
|
85 |
public void setReferences(String myReferences) |
|
86 |
{ |
|
87 |
this.references = myReferences; |
|
88 |
} |
|
89 |
|
|
90 |
/** Get the references */ |
|
91 |
public String getReferences() |
|
92 |
{ |
|
93 |
return this.references; |
|
94 |
} |
|
95 |
|
|
83 | 96 |
/** Method to copy a accesssection object to a new one */ |
84 | 97 |
public Object clone() |
85 | 98 |
{ |
Also available in: Unified diff
Add a field varible references and set, get methods.