Uses of Class
com.zphinx.spine.vo.dto.StringAttributeBean

Packages that use StringAttributeBean
com.zphinx.spine Universal and common classes and interfaces used by the spine application framework. 
com.zphinx.spine.members Classes and interfaces which provide identity management objects used by the Spine application framework. 
com.zphinx.spine.message A collection of classes which provide message retrieval and storage facilities used by the Spine application framework. 
com.zphinx.spine.security Provides classes which are used by the Spine Application Framework to provide security features for objects used or which depend on the Spine Application framework. 
com.zphinx.spine.vo.dto DataTransferObject classes and interfaces for data interchange between specific layers of the application framework. 
 

Uses of StringAttributeBean in com.zphinx.spine
 

Methods in com.zphinx.spine that return StringAttributeBean
 StringAttributeBean Resources.getCountry(String countryId)
          Gets the StringAttributeBean of the country to use, this represented as CountryName|countryCode
 StringAttributeBean Resources.getLocale(String localeId)
          Gets a StringAttributeBean containing the Locale and it's locale code.
 StringAttributeBean Resources.getState(String stateId)
          Gets a StringAttributeBean containing the state amd it's state code.
 

Methods in com.zphinx.spine that return types with arguments of type StringAttributeBean
 ArrayList<StringAttributeBean> Resources.getCountryList()
          Gets the list of StringAttributeBeans containing the country names with the associated ids.The id is usually represented in the properties file as country.countryId=countryName.
 ArrayList<StringAttributeBean> Resources.getStateList()
          Gets the list of StringAttributeBean containing the state names with the associated ids.The id is usually represented in the properties file as state.stateId=State Name.
protected  ArrayList<StringAttributeBean> Resources.sortList(ArrayList aList)
          Alphabetically sort the contents of this list
 

Uses of StringAttributeBean in com.zphinx.spine.members
 

Methods in com.zphinx.spine.members that return StringAttributeBean
 StringAttributeBean Group.getAdministrator()
          Get the currently active Administrator
 StringAttributeBean Member.getCountry()
          Return the country of origin of this member.
 StringAttributeBean Member.getGroupName()
          Get the group name this member belongs to.
 StringAttributeBean Member.getState()
          Return the state of origin of this member.
 

Methods in com.zphinx.spine.members with parameters of type StringAttributeBean
 void Group.setAdministrator(StringAttributeBean administrator)
          Add an administrator to this group.This administrator is also the active Administrator for this group
 void Member.setCountry(StringAttributeBean country)
          Set the new country of origin of this member.
 void Group.setGroupName(StringAttributeBean groupName)
           
 void Member.setGroupName(StringAttributeBean groupName)
          Set the group name this member belongs to.
 void Member.setState(StringAttributeBean bean)
          Set the new state of origin of this member.
 

Uses of StringAttributeBean in com.zphinx.spine.message
 

Methods in com.zphinx.spine.message that return types with arguments of type StringAttributeBean
static ArrayList<StringAttributeBean> MessageConfig.getResourcesList()
          Gets the arrayList of resource properties files in use by this framework.
 

Uses of StringAttributeBean in com.zphinx.spine.security
 

Methods in com.zphinx.spine.security that return types with arguments of type StringAttributeBean
 List<StringAttributeBean> SpinePermission.getAdminNames()
          Get The ArrayList of StringAttributeBeans containing the names and Ids of Administrators of this member
 List<StringAttributeBean> SpinePermission.getGroupNames()
          Get The ArrayList of StringAttributeBeans containing the names and Ids of Groups of this member
 

Method parameters in com.zphinx.spine.security with type arguments of type StringAttributeBean
 void SpinePermission.setAdminNames(List<StringAttributeBean> adminNames)
          Sets the list of administrator StringAttributeBeans in this permission
 void SpinePermission.setGroupNames(List<StringAttributeBean> groupNames)
          Sets the ArrayList of group StringAttributeBeans in this permission
 

Constructor parameters in com.zphinx.spine.security with type arguments of type StringAttributeBean
SpinePermission(String name, PermissionLevel pLevel, List<StringAttributeBean> adminNames, List<StringAttributeBean> groupNames)
          A constructor which is used to preset the name,permissionLevel,admin names, and group names of this permission.
SpinePermission(String name, PermissionLevel pLevel, List<StringAttributeBean> adminNames, List<StringAttributeBean> groupNames)
          A constructor which is used to preset the name,permissionLevel,admin names, and group names of this permission.
 

Uses of StringAttributeBean in com.zphinx.spine.vo.dto
 

Subclasses of StringAttributeBean in com.zphinx.spine.vo.dto
 class UserListBean
          A UserListBean provides additional properties for use by Member objects of the spine framework