Package org.gluu.oxtrust.action
Class WhitePagesAction
- java.lang.Object
-
- org.gluu.oxtrust.action.WhitePagesAction
-
- All Implemented Interfaces:
java.io.Serializable
@Named("whitePagesAction") @ConversationScoped @Secure("#{permissionService.hasPermission(\'profile\', \'access\')}") public class WhitePagesAction extends java.lang.Object implements java.io.Serializable
Action class for view white pages- Author:
- Yuriy Movchan Date: 11.02.2010
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WhitePagesAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canContact(GluuCustomPerson person)
java.util.List<GluuCustomPerson>
getPersons()
java.util.List<GluuCustomAttribute>
getReleasedAttributes(GluuCustomPerson person)
GluuCustomPerson
getSelectedPerson()
java.util.Set<java.lang.Integer>
getSelectedPersons()
java.lang.String
getTableState()
void
init()
boolean
released(GluuCustomPerson person, java.lang.String attributeName)
java.lang.String
search()
void
setSelectedPersons(java.util.Set<java.lang.Integer> selectedPersons)
void
setTableState(java.lang.String tableState)
java.lang.String
start()
-
-
-
Method Detail
-
init
@PostConstruct public void init()
-
start
@Secure("#{permissionService.hasPermission(configurationService.configuration, \'whitePagesEnabled\')}") public java.lang.String start()
-
search
@Secure("#{permissionService.hasPermission(configurationService.configuration, \'whitePagesEnabled\')}") public java.lang.String search()
-
getPersons
public java.util.List<GluuCustomPerson> getPersons()
-
getTableState
public java.lang.String getTableState()
-
setTableState
public void setTableState(java.lang.String tableState)
-
getSelectedPersons
public java.util.Set<java.lang.Integer> getSelectedPersons()
-
setSelectedPersons
public void setSelectedPersons(java.util.Set<java.lang.Integer> selectedPersons)
-
getSelectedPerson
public GluuCustomPerson getSelectedPerson()
-
getReleasedAttributes
public java.util.List<GluuCustomAttribute> getReleasedAttributes(GluuCustomPerson person)
-
released
public boolean released(GluuCustomPerson person, java.lang.String attributeName)
-
canContact
public boolean canContact(GluuCustomPerson person)
-
-