1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.om.profile;
18
19
20 import org.apache.jetspeed.om.SecurityReference;
21
22 /***
23 * Interface for parameters in psml
24 *
25 *
26 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
27 * @version $Id: Parameter.java,v 1.5 2004/02/23 03:05:01 jford Exp $
28 */
29 public interface Parameter extends Cloneable
30 {
31 /*** @return name the name of the parameter */
32 public String getName();
33
34 /*** Sets the name of this parameter
35 * @param name the parameter name
36 */
37 public void setName( String name );
38
39 /*** @return the value of the parameter */
40 public String getValue();
41
42 /*** Sets the value of the param
43 * @param value the value of the param
44 */
45 public void setValue( String value );
46
47 /*** Getter for property securityRef.
48 * @return Value of property securityRef.
49 */
50 public SecurityReference getSecurityRef();
51
52 /*** Setter for property securityRef.
53 * @param securityRef New value of property securityRef.
54 */
55 public void setSecurityRef(SecurityReference securityRef);
56
57 /***
58 * Create a clone of this object
59 */
60 public Object clone()
61 throws java.lang.CloneNotSupportedException;
62 }