use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class ElectronicSignatureVerifiedService method handleUpdate.
/**
* Update a ElectronicSignatureVerified identified by its systemId
* <p>
* Copy the values you are allowed to change, code and description
*
* @param systemId The systemId of the
* electronicSignatureVerified
* object you wish to update
* @param electronicSignatureVerified The updated
* electronicSignatureVerified
* object. Note the values you
* are allowed to change are
* copied from this object. This
* object is not persisted.
* @return the updated electronicSignatureVerified
*/
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, ElectronicSignatureVerified electronicSignatureVerified) {
ElectronicSignatureVerified existingElectronicSignatureVerified = getElectronicSignatureVerifiedOrThrow(systemId);
// Copy all the values you are allowed to copy ....
if (null != existingElectronicSignatureVerified.getCode()) {
existingElectronicSignatureVerified.setCode(existingElectronicSignatureVerified.getCode());
}
if (null != existingElectronicSignatureVerified.getDescription()) {
existingElectronicSignatureVerified.setDescription(existingElectronicSignatureVerified.getDescription());
}
// Note this can potentially result in a NoarkConcurrencyException
// exception
existingElectronicSignatureVerified.setVersion(version);
MetadataHateoas electronicSignatureVerifiedHateoas = new MetadataHateoas(electronicSignatureVerifiedRepository.save(existingElectronicSignatureVerified));
metadataHateoasHandler.addLinks(electronicSignatureVerifiedHateoas, new Authorisation());
applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingElectronicSignatureVerified));
return electronicSignatureVerifiedHateoas;
}
use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class FileTypeService method findByDescription.
/**
* Retrieve all FileType 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 FileType objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) fileTypeRepository.findByDescription(description), FILE_TYPE);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method find.
// find by systemId
/**
* Retrieve a single FlowStatus object identified by systemId
*
* @param systemId systemId of the FlowStatus you wish to retrieve
* @return single FlowStatus object wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas find(String systemId) {
MetadataHateoas metadataHateoas = new MetadataHateoas(flowStatusRepository.findBySystemId(systemId));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method createNewFlowStatus.
// All CREATE operations
/**
* Persists a new FlowStatus object to the database.
*
* @param flowStatus FlowStatus object with values set
* @return the newly persisted FlowStatus object wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas createNewFlowStatus(FlowStatus flowStatus) {
flowStatus.setDeleted(false);
flowStatus.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(flowStatusRepository.save(flowStatus));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method findAll.
// All READ operations
/**
* Retrieve a list of all FlowStatus objects
*
* @return list of FlowStatus objects wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas findAll() {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) flowStatusRepository.findAll(), FLOW_STATUS);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations