Package org.eurekastreams.server.domain

Examples of org.eurekastreams.server.domain.EntityType


        // get the unique entity Id
        final String uniqueEntityId = inRequest.getEntityId();

        // get the entity type.
        EntityType targetType = inRequest.getEntityType();

        // get the start value.
        Integer startValue = (inRequest.getStartIndex()).intValue();

        // get the end value.
View Full Code Here


        // the followed entity's account id.
        String followedEntityId = inRequest.getFollowedEntityId();

        // the followed entity's entity type.
        final EntityType entityType = inRequest.getEntityType();

        if (log.isTraceEnabled())
        {
            log.trace("Checking the following status for the user " + accountId + " following " + followedEntityId
                    + " of entity type " + entityType.toString());
        }

        // if open social id was passed for person, convert to acct. id. else entityId is an accountId
        if (followedEntityId.matches(openSocialPattern) && entityType == EntityType.PERSON)
        {
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.domain.EntityType

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.