use of nikita.common.model.noark5.v4.metadata.SignOffMethod in project nikita-noark5-core by HiOA-ABI.
the class SignOffMethodService method handleUpdate.
/**
* Update a SignOffMethod identified by its systemId
* <p>
* Copy the values you are allowed to change, code and description
*
* @param SignOffMethod
* @return the updated SignOffMethod
*/
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, SignOffMethod SignOffMethod) {
SignOffMethod existingSignOffMethod = getSignOffMethodOrThrow(systemId);
// Copy all the values you are allowed to copy ....
if (null != existingSignOffMethod.getCode()) {
existingSignOffMethod.setCode(existingSignOffMethod.getCode());
}
if (null != existingSignOffMethod.getDescription()) {
existingSignOffMethod.setDescription(existingSignOffMethod.getDescription());
}
// Note this can potentially result in a NoarkConcurrencyException
// exception
existingSignOffMethod.setVersion(version);
MetadataHateoas SignOffMethodHateoas = new MetadataHateoas(SignOffMethodRepository.save(existingSignOffMethod));
metadataHateoasHandler.addLinks(SignOffMethodHateoas, new Authorisation());
applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingSignOffMethod));
return SignOffMethodHateoas;
}
use of nikita.common.model.noark5.v4.metadata.SignOffMethod in project nikita-noark5-core by HiOA-ABI.
the class SignOffMethodService method findByCode.
/**
* retrieve all SignOffMethod that have a particular code.
* <br>
* Note, this will be replaced by OData search.
*
* @param code
* @return A list of SignOffMethod objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByCode(String code) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) SignOffMethodRepository.findByCode(code), SIGN_OFF_METHOD);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.metadata.SignOffMethod in project nikita-noark5-core by HiOA-ABI.
the class SignOffMethodService method getSignOffMethodOrThrow.
/**
* Internal helper method. Rather than having a find and try catch in
* multiple methods, we have it here once. If you call this, be aware
* that you will only ever get a valid SignOffMethod object back. If there
* is no SignOffMethod object, a NoarkEntityNotFoundException exception
* is thrown
*
* @param systemId The systemId of the SignOffMethod object to retrieve
* @return the SignOffMethod object
*/
private SignOffMethod getSignOffMethodOrThrow(@NotNull String systemId) {
SignOffMethod SignOffMethod = SignOffMethodRepository.findBySystemId(systemId);
if (SignOffMethod == null) {
String info = INFO_CANNOT_FIND_OBJECT + " SignOffMethod, using " + "systemId " + systemId;
logger.error(info);
throw new NoarkEntityNotFoundException(info);
}
return SignOffMethod;
}
use of nikita.common.model.noark5.v4.metadata.SignOffMethod in project nikita-noark5-core by HiOA-ABI.
the class SignOffMethodService method find.
// find by systemId
/**
* Retrieve a single SignOffMethod object identified by systemId
*
* @param systemId
* @return single SignOffMethod object wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas find(String systemId) {
MetadataHateoas metadataHateoas = new MetadataHateoas(SignOffMethodRepository.save(SignOffMethodRepository.findBySystemId(systemId)));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.metadata.SignOffMethod in project nikita-noark5-core by HiOA-ABI.
the class SignOffMethodService method findByDescription.
/**
* Retrieve all SignOffMethod that have a given description.
* <br>
* Note, this will be replaced by OData search.
*
* @param description
* @return A list of SignOffMethod objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) SignOffMethodRepository.findByDescription(description), SIGN_OFF_METHOD);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations