Package org.eurekastreams.server.domain.Follower

Examples of org.eurekastreams.server.domain.Follower.FollowerStatus


    public FollowPanel(final FollowerStatusable inFollowable, final String followStyle, final String unfollowStyle,
            final String commonStyle, final boolean showTooltips, final ClickHandler onFollowHandler,
            final String inPendingGroupJoinedStateStyleName)
    {
        pendingGroupJoinedStateStyleName = inPendingGroupJoinedStateStyleName;
        FollowerStatus status = inFollowable.getFollowerStatus();

        if (inFollowable instanceof DomainGroupModelView && ((DomainGroupModelView) inFollowable).isPublic() != null
                && !((DomainGroupModelView) inFollowable).isPublic()
                && !Session.getInstance().getCurrentPerson().getRoles().contains(Role.SYSTEM_ADMIN))
        {
View Full Code Here


            throws ExecutionException
    {
        Long followerId;
        String followerAccountId = null;
        Long targetId;
        FollowerStatus followerStatus;
        String targetName;
        boolean isPending = false;
        List<UserActionRequest> asyncRequests = inActionContext.getUserActionRequests();
        final Serializable params = inActionContext.getActionContext().getParams();
View Full Code Here

     */
    public List<T> execute(final Long inCurrentUserId, final List<T> inFollowerStatusables,
            final FollowerStatus inDefaultStatus)
    {
        // set default status or use not specified if not specified (imagine that!).
        FollowerStatus defaultStatus = inDefaultStatus == null ? FollowerStatus.NOTSPECIFIED : inDefaultStatus;
        List<Long> personIds = null;
        List<Long> groupIds = null;
        long entityId;

        for (FollowerStatusable fs : inFollowerStatusables)
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.domain.Follower.FollowerStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.