org.exoplatform.social.webui.connections
Class UIPendingRelation

java.lang.Object
  extended by org.exoplatform.webui.core.UIComponent
      extended by org.exoplatform.webui.core.UIContainer
          extended by org.exoplatform.social.webui.connections.UIPendingRelation

public class UIPendingRelation
extends org.exoplatform.webui.core.UIContainer

Manages pending relation of all existing users. Manages actions such as accept or deny invitation and search action.
- Get all users that have pending relation.
- Check the status of each user with current user then display the list.
- Listens to event: deny contact and search action.
Author : dang.tung tungcnw@gmail.com Aug 25, 2009


Nested Class Summary
static class UIPendingRelation.IgnoreActionListener
          Listens to deny action then delete the invitation.
- Gets information of user is invited or made request.
- Checks the relation to confirm that have got pending relation.
- Removes the current pending relation and save the new relation.
static class UIPendingRelation.LoadMorePeopleActionListener
          Listeners loading more people action.
static class UIPendingRelation.SearchActionListener
          Listens event that broadcast from UIProfileUserSearch.
 
Nested classes/interfaces inherited from class org.exoplatform.webui.core.UIContainer
org.exoplatform.webui.core.UIContainer.SelectTabActionListener
 
Field Summary
 
Fields inherited from class org.exoplatform.webui.core.UIComponent
AJAX_ASYNC, config, OBJECTID, UICOMPONENT, uiparent
 
Constructor Summary
UIPendingRelation()
          Initializes components and add as child of form.
 
Method Summary
 List<org.exoplatform.social.core.identity.model.Identity> getPeopleList()
          Gets list of all type of people.
 org.exoplatform.commons.utils.ListAccess<org.exoplatform.social.core.identity.model.Identity> getPeopleListAccess()
          Gets people with ListAccess type.
 int getPeopleNum()
          Gets number of people for displaying.
 void init()
          Inits at the first loading.
 boolean isEditable()
          Return true to accept user is viewing can edit.
 boolean isEnableLoadNext()
          Gets flag to display LoadNext button or not.
 boolean isHasUpdatedIdentity()
          Gets information that clarify one element is updated or not.
 boolean isLoadAtEnd()
          Gets flags to clarify that load at the last element or not.
 void loadNext()
          Loads more people.
 void loadSearch()
          Loads people when searching.
 void setEnableLoadNext(boolean enableLoadNext)
          Sets flag to display LoadNext button or not.
 void setHasUpdatedIdentity(boolean hasUpdatedIdentity)
          Sets information that clarify one element is updated or not.
 void setLoadAtEnd(boolean loadAtEnd)
          Sets flags to clarify that load at the last element or not.
 void setLoadingCapacity(int loadingCapacity)
          Sets loading capacity.
 void setPeopleList(List<org.exoplatform.social.core.identity.model.Identity> peopleList)
          Sets list of all type of people.
 void setPeopleListAccess(org.exoplatform.commons.utils.ListAccess<org.exoplatform.social.core.identity.model.Identity> peopleListAccess)
          Sets people with ListAccess type.
 void setPeopleNum(int peopleNum)
          Sets number of people for displaying.
 
Methods inherited from class org.exoplatform.webui.core.UIContainer
addChild, addChild, findComponentById, findComponentOfType, findFirstComponentOfType, getChild, getChild, getChildById, getChildren, hasChildren, removeChild, removeChildById, renderChild, renderChild, renderChild, renderChild, renderChildren, renderChildren, renderUIComponent, replaceChild, replaceChild, setChildren, setRenderedChild, setRenderedChild, setRenderedChildrenOfTypes
 
Methods inherited from class org.exoplatform.webui.core.UIComponent
broadcast, createEvent, createUIComponent, createUIComponent, createUIComponent, doAsync, event, event, event, getAncestorOfType, getApplicationComponent, getComponentConfig, getId, getName, getParent, getTemplate, getTemplateResourceResolver, getUIComponentName, isRendered, loadConfirmMesssage, processAction, processDecode, processRender, renderEventURL, setComponentConfig, setComponentConfig, setId, setParent, setRendered, setRenderSibling, url, url, url
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UIPendingRelation

public UIPendingRelation()
                  throws Exception
Initializes components and add as child of form.

Throws:
Exception
Method Detail

init

public void init()
Inits at the first loading.

Since:
1.2.2

setLoadingCapacity

public void setLoadingCapacity(int loadingCapacity)
Sets loading capacity.

Parameters:
loadingCapacity -

isEnableLoadNext

public boolean isEnableLoadNext()
Gets flag to display LoadNext button or not.

Returns:
the enableLoadNext
Since:
1.2.2

setEnableLoadNext

public void setEnableLoadNext(boolean enableLoadNext)
Sets flag to display LoadNext button or not.

Parameters:
enableLoadNext - the enableLoadNext to set
Since:
1.2.2

isLoadAtEnd

public boolean isLoadAtEnd()
Gets flags to clarify that load at the last element or not.

Returns:
the loadAtEnd
Since:
1.2.2

setLoadAtEnd

public void setLoadAtEnd(boolean loadAtEnd)
Sets flags to clarify that load at the last element or not.

Parameters:
loadAtEnd - the loadAtEnd to set
Since:
1.2.2

isHasUpdatedIdentity

public boolean isHasUpdatedIdentity()
Gets information that clarify one element is updated or not.

Returns:
the hasUpdatedIdentity
Since:
1.2.2

setHasUpdatedIdentity

public void setHasUpdatedIdentity(boolean hasUpdatedIdentity)
Sets information that clarify one element is updated or not.

Parameters:
hasUpdatedIdentity - the hasUpdatedIdentity to set
Since:
1.2.2

getPeopleList

public List<org.exoplatform.social.core.identity.model.Identity> getPeopleList()
                                                                        throws Exception
Gets list of all type of people.

Returns:
the peopleList
Throws:
Exception
Since:
1.2.2

setPeopleList

public void setPeopleList(List<org.exoplatform.social.core.identity.model.Identity> peopleList)
Sets list of all type of people.

Parameters:
peopleList - the peopleList to set
Since:
1.2.2

getPeopleNum

public int getPeopleNum()
Gets number of people for displaying.

Returns:
the peopleNum
Since:
1.2.2

setPeopleNum

public void setPeopleNum(int peopleNum)
Sets number of people for displaying.

Parameters:
peopleNum - the peopleNum to set
Since:
1.2.2

getPeopleListAccess

public org.exoplatform.commons.utils.ListAccess<org.exoplatform.social.core.identity.model.Identity> getPeopleListAccess()
Gets people with ListAccess type.

Returns:
the peopleListAccess
Since:
1.2.2

setPeopleListAccess

public void setPeopleListAccess(org.exoplatform.commons.utils.ListAccess<org.exoplatform.social.core.identity.model.Identity> peopleListAccess)
Sets people with ListAccess type.

Parameters:
peopleListAccess - the peopleListAccess to set
Since:
1.2.2

loadNext

public void loadNext()
              throws Exception
Loads more people.

Throws:
Exception
Since:
1.2.2

loadSearch

public void loadSearch()
                throws Exception
Loads people when searching.

Throws:
Exception
Since:
1.2.2

isEditable

public boolean isEditable()
Return true to accept user is viewing can edit.

Returns:
true if current user is current login user.


Copyright © 2013 eXo Platform SAS. All Rights Reserved.