Examples of LabelEntity


Examples of org.socialmusicdiscovery.server.business.model.core.LabelEntity

    public LabelEntity create(LabelEntity label) {
        try {
            transactionManager.begin();
            label.setLastUpdated(new Date());
            label.setLastUpdatedBy(super.CHANGED_BY);
            LabelEntity createdEntity = super.createEntity(label);
            getRepository().refresh(createdEntity);
            return new CopyHelper().copy(createdEntity, Expose.class);
        }catch (RuntimeException e) {
            transactionManager.setRollbackOnly();
            throw e;
View Full Code Here

Examples of org.socialmusicdiscovery.server.business.model.core.LabelEntity

    public LabelEntity update(@PathParam("id") String id, LabelEntity label) {
        try {
            transactionManager.begin();
            label.setLastUpdated(new Date());
            label.setLastUpdatedBy(super.CHANGED_BY);
            LabelEntity updatedEntity = super.updateEntity(id, label);
            getRepository().refresh(updatedEntity);
            return new CopyHelper().copy(updatedEntity, Expose.class);
        }catch (RuntimeException e) {
            transactionManager.setRollbackOnly();
            throw e;
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.