Package org.apereo.cas.mgmt
Interface ContactLookup
-
public interface ContactLookupInterface implemented to provide a list of contacts from a query String.- Since:
- 6.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apereo.cas.services.RegisteredServiceContactloggedInContact(java.lang.String id)Method called to create a contact for the logged in user.java.util.Collection<org.apereo.cas.services.RegisteredServiceContact>query(java.lang.String query)Method called by the ContactLoookUpController to retrieve contacts.
-
-
-
Method Detail
-
query
java.util.Collection<org.apereo.cas.services.RegisteredServiceContact> query(java.lang.String query)
Method called by the ContactLoookUpController to retrieve contacts.- Parameters:
query- - the query- Returns:
- - the list of contacts
-
loggedInContact
org.apereo.cas.services.RegisteredServiceContact loggedInContact(java.lang.String id)
Method called to create a contact for the logged in user.- Parameters:
id- - the id of the user to look up.- Returns:
- - the logged in user a contact.
-
-