Package org.socialmusicdiscovery.server.business.model.core

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


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


    public RecordingEntity update(@PathParam("id") String id, RecordingEntity recording) {
        try {
            transactionManager.begin();
            recording.setLastUpdated(new Date());
            recording.setLastUpdatedBy(super.CHANGED_BY);
            RecordingEntity updatedEntity = super.updateEntity(id, recording);
            getRepository().refresh(updatedEntity);
            return new CopyHelper().copy(updatedEntity, Expose.class);
        }catch (RuntimeException e) {
            transactionManager.setRollbackOnly();
            throw e;
View Full Code Here

TOP

Related Classes of org.socialmusicdiscovery.server.business.model.core.RecordingEntity

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.