Package org.dspace.rest.entities

Examples of org.dspace.rest.entities.StatsEntity


    public Object getEntity(EntityReference reference) {
        log.info(userInfo() + "get_entity:" + reference.getId());

        // sample entity
        if (reference.getId().equals(":ID:")) {
            return new StatsEntity();
        }

        throw new IllegalArgumentException("Invalid id:" + reference.getId());
    }
View Full Code Here


            throw new EntityException("Internal Server Error", "Log file Problem", 500);
        }
    }

    public Object getSampleEntity() {
        return new StatsEntity();
    }
View Full Code Here

TOP

Related Classes of org.dspace.rest.entities.StatsEntity

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.