dlestrat 2004/04/25 09:31:08
Added: commons/src/java/org/apache/jetspeed/om/common
UserAttribute.java
Log:
This is a start at implementing PLT.17.2 Accessing User Attributes.
Revision Changes Path
1.1
jakarta-jetspeed-2/commons/src/java/org/apache/jetspeed/om/common/UserAttribute.java
Index: UserAttribute.java
===================================================================
/* Copyright 2004 Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jetspeed.om.common;
import java.io.Serializable;
/**
* <p>Interface representing user attribute as defined in Portlet specs:
* PLT.17.2 Accessing User Attributes.</p>
* @author <a href="mailto:[EMAIL PROTECTED]">David Le Strat</a>
*
*/
public interface UserAttribute extends Serializable
{
/** Getter for the user-attribute name. */
String getName();
/** Setter for the user-attribute name. */
void setName(String name);
/** Getter for the user-attribute description. */
String getDescription();
/** Setter for the user-attribute description. */
void setDescription(String description);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]