use of nikita.common.model.noark5.v4.metadata.FlowStatus in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method handleUpdate.
/**
* Update a FlowStatus identified by its systemId
* <p>
* Copy the values you are allowed to change, code and description
*
* @param systemId The systemId of the flowStatus object you wish to update
* @param flowStatus The updated flowStatus object. Note the values you
* are allowed to change are copied from this object.
* This object is not persisted.
* @return the updated flowStatus
*/
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, FlowStatus flowStatus) {
FlowStatus existingFlowStatus = getFlowStatusOrThrow(systemId);
// Copy all the values you are allowed to copy ....
if (null != existingFlowStatus.getCode()) {
existingFlowStatus.setCode(existingFlowStatus.getCode());
}
if (null != existingFlowStatus.getDescription()) {
existingFlowStatus.setDescription(existingFlowStatus.getDescription());
}
// Note this can potentially result in a NoarkConcurrencyException
// exception
existingFlowStatus.setVersion(version);
MetadataHateoas flowStatusHateoas = new MetadataHateoas(flowStatusRepository.save(existingFlowStatus));
metadataHateoasHandler.addLinks(flowStatusHateoas, new Authorisation());
applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingFlowStatus));
return flowStatusHateoas;
}
use of nikita.common.model.noark5.v4.metadata.FlowStatus in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method findByDescription.
/**
* Retrieve all FlowStatus 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 FlowStatus objects wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) flowStatusRepository.findByDescription(description), FLOW_STATUS);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.metadata.FlowStatus in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method findByCode.
/**
* retrieve all FlowStatus 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 FlowStatus objects wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas findByCode(String code) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) flowStatusRepository.findByCode(code), FLOW_STATUS);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations