Examples of LinkInformation


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

    {
        Query q = getEntityManager().createQuery("from LinkInformation where url = :url").setParameter("url",
                inRequest.getUniqueId());
        List<LinkInformation> results = q.getResultList();

        LinkInformation result = null;

        if (results.size() > 0)
        {
            result = results.get(0);
            Date now = new Date();
            if (result.getCreated().getTime() < (now.getTime() - expirationInMilliseconds))
            {
                getEntityManager().remove(result);
                result = null;
            }
        }
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.