1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.om.registry;
18
19 /***
20 * Interface describing a parameter for a registry entry.
21 *
22 * @author <a href="mailto:raphael@apache.org">Raphaël Luta</a>
23 * @version $Id: Parameter.java,v 1.2 2004/02/23 03:11:39 jford Exp $
24 */
25 public interface Parameter extends RegistryEntry
26 {
27
28 /*** @return the value for this parameter */
29 public String getValue();
30
31 /*** Sets the value of this parameter.
32 *
33 * @param value the new parameter value
34 */
35 public void setValue(String value);
36
37 /*** @return the parameter's type */
38 public String getType();
39
40 /*** Sets the type of this parameter.value.
41 *
42 * @param type the new parameter type
43 */
44 public void setType(String type);
45
46 }