1 16 17 package org.apache.jetspeed.om.profile; 18 19 import org.apache.jetspeed.om.SecurityReference; 21 22 29 public interface Parameter extends Cloneable  30 { 31 32 public String getName(); 33 34 37 public void setName( String name ); 38 39 40 public String getValue(); 41 42 45 public void setValue( String value ); 46 47 50 public SecurityReference getSecurityRef(); 51 52 55 public void setSecurityRef(SecurityReference securityRef); 56 57 60 public Object clone() 61 throws java.lang.CloneNotSupportedException ; 62 } | Popular Tags |