1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.om;
18
19 import java.io.Serializable;
20 /***
21 * SecurityReference
22 *
23 * @author <a href="paulsp@apache.org">Paul Spencer</a>
24 * @version $Id: SecurityReference.java,v 1.5 2004/02/23 03:14:32 jford Exp $
25 */
26 public interface SecurityReference extends Serializable, Cloneable
27 {
28
29 /*** Getter for property parent.
30 * @return Value of property parent.
31 */
32 public String getParent();
33
34 /*** Setter for property parent.
35 * @param parent New value of property parent.
36 */
37 public void setParent(String parent);
38
39 /***
40 * Create a clone of this object
41 */
42 public Object clone()
43 throws java.lang.CloneNotSupportedException;
44 }
45