Package org.marketcetera.admin
Interface UserAttribute
-
- All Superinterfaces:
Serializable,SummaryEntityBase
- All Known Subinterfaces:
MutableUserAttribute
- All Known Implementing Classes:
SimpleUserAttribute
public interface UserAttribute extends SummaryEntityBase
Represents an attribute associated with a user.- Since:
- 1.2.0
- Version:
- $Id$
- Author:
- Colin DuPlantis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAttribute()Gets the attribute value.UserAttributeTypegetAttributeType()Gets the user attribute type value.UsergetUser()Gets the user value.-
Methods inherited from interface org.marketcetera.persist.SummaryEntityBase
getId, getLastUpdated, getUpdateCount
-
-
-
-
Method Detail
-
getUser
User getUser()
Gets the user value.- Returns:
- a
Uservalue
-
getAttributeType
UserAttributeType getAttributeType()
Gets the user attribute type value.- Returns:
- a
UserAttributeTypevalue
-
getAttribute
String getAttribute()
Gets the attribute value.- Returns:
- a
Stringvalue
-
-