Examples of FeaturedStream


Examples of org.eurekastreams.server.domain.stream.FeaturedStream

        // get streamScope from context state, or create proxy verison if not there.
        StreamScope streamScope = (inActionContext.getActionContext().getState().get("streamScope") == null) ? //
        streamScopeProxyMapper.execute(dto.getStreamId())
                : (StreamScope) inActionContext.getActionContext().getState().get("streamScope");

        FeaturedStream entity = new FeaturedStream(dto.getDescription(), streamScope);

        // insert into datastore.
        Long entityId = insertMapper.execute(new PersistenceRequest<FeaturedStream>(entity));

        // kick off the action to rebuild the Discover Page cache - but don't delete the key now, because it takes
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.