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

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


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


    public PersonEntity update(@PathParam("id") String id, PersonEntity person) {
        try {
            transactionManager.begin();
            person.setLastUpdated(new Date());
            person.setLastUpdatedBy(super.CHANGED_BY);
            PersonEntity updatedEntity = super.updateEntity(id, person);
            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.PersonEntity

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.