use of nikita.common.model.noark5.v4.metadata.CasePartyRole in project nikita-noark5-core by HiOA-ABI.
the class CasePartyRoleService method find.
// find by systemId
/**
* Retrieve a single CasePartyRole object identified by systemId
*
* @param systemId systemId of the CasePartyRole you wish to retrieve
* @return single CasePartyRole object wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas find(String systemId) {
MetadataHateoas metadataHateoas = new MetadataHateoas(casePartyRoleRepository.findBySystemId(systemId));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.metadata.CasePartyRole in project nikita-noark5-core by HiOA-ABI.
the class CasePartyRoleService method findByCode.
/**
* retrieve all CasePartyRole that have a particular code.
* <br>
* Note, this will be replaced by OData search.
*
* @param code The code of the object you wish to retrieve
* @return A list of CasePartyRole objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByCode(String code) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) casePartyRoleRepository.findByCode(code), CASE_PARTY_ROLE);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.metadata.CasePartyRole in project nikita-noark5-core by HiOA-ABI.
the class CasePartyRoleService method handleUpdate.
/**
* Update a CasePartyRole identified by its systemId
* <p>
* Copy the values you are allowed to change, code and description
*
* @param systemId The systemId of the casePartyRole object you wish to
* update
* @param casePartyRole The updated casePartyRole object. Note the values
* you are allowed to change are copied from this
* object. This object is not persisted.
* @return the updated casePartyRole
*/
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, CasePartyRole casePartyRole) {
CasePartyRole existingCasePartyRole = getCasePartyRoleOrThrow(systemId);
// Copy all the values you are allowed to copy ....
if (null != existingCasePartyRole.getCode()) {
existingCasePartyRole.setCode(existingCasePartyRole.getCode());
}
if (null != existingCasePartyRole.getDescription()) {
existingCasePartyRole.setDescription(existingCasePartyRole.getDescription());
}
// Note this can potentially result in a NoarkConcurrencyException
// exception
existingCasePartyRole.setVersion(version);
MetadataHateoas casePartyRoleHateoas = new MetadataHateoas(casePartyRoleRepository.save(existingCasePartyRole));
metadataHateoasHandler.addLinks(casePartyRoleHateoas, new Authorisation());
applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingCasePartyRole));
return casePartyRoleHateoas;
}
use of nikita.common.model.noark5.v4.metadata.CasePartyRole in project nikita-noark5-core by HiOA-ABI.
the class CasePartyRoleService method findByDescription.
/**
* Retrieve all CasePartyRole that have a given
* description.
* <br>
* Note, this will be replaced by OData search.
*
* @param description Description of object you wish to retrieve. The
* whole text, this is an exact search.
* @return A list of CasePartyRole objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) casePartyRoleRepository.findByDescription(description), CASE_PARTY_ROLE);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.metadata.CasePartyRole in project nikita-noark5-core by HiOA-ABI.
the class CasePartyRoleService method createNewCasePartyRole.
// All CREATE operations
/**
* Persists a new CasePartyRole object to the database.
*
* @param casePartyRole CasePartyRole object with values set
* @return the newly persisted CasePartyRole object wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas createNewCasePartyRole(CasePartyRole casePartyRole) {
casePartyRole.setDeleted(false);
casePartyRole.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(casePartyRoleRepository.save(casePartyRole));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations