1/*2 * Copyright 2000-2001,2004 The Apache Software Foundation.3 * 4 * Licensed under the Apache License, Version 2.0 (the "License");5 * you may not use this file except in compliance with the License.6 * You may obtain a copy of the License at7 * 8 * http://www.apache.org/licenses/LICENSE-2.09 * 10 * Unless required by applicable law or agreed to in writing, software11 * distributed under the License is distributed on an "AS IS" BASIS,12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.13 * See the License for the specific language governing permissions and14 * limitations under the License.15 */1617packageorg.apache.jetspeed.om.profile;
1819// Jetspeed imports20import org.apache.jetspeed.om.SecurityReference;
2122/***23 * Interface for parameters in psml24 *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 */29publicinterfaceParameterextends Cloneable
30 {
31/*** @return name the name of the parameter */32public String getName();
3334/*** Sets the name of this parameter35 * @param name the parameter name36 */37publicvoid setName( String name );
3839/*** @return the value of the parameter */40public String getValue();
4142/*** Sets the value of the param43 * @param value the value of the param44 */45publicvoid setValue( String value );
4647/*** Getter for property securityRef.48 * @return Value of property securityRef.49 */50publicSecurityReference getSecurityRef();
5152/*** Setter for property securityRef.53 * @param securityRef New value of property securityRef.54 */55publicvoid setSecurityRef(SecurityReference securityRef);
5657/***58 * Create a clone of this object59 */60public Object clone()
61 throws java.lang.CloneNotSupportedException;
62 }