use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class RegistryEntryTypeService method createNewRegistryEntryType.
// All CREATE operations
/**
* Persists a new RegistryEntryType object to the database.
*
* @param registryEntryType RegistryEntryType object with values set
* @return the newly persisted RegistryEntryType object wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas createNewRegistryEntryType(RegistryEntryType registryEntryType) {
registryEntryType.setDeleted(false);
registryEntryType.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(formatRepository.save(registryEntryType));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.webapp.security.Authorisation 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.webapp.security.Authorisation 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.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class VariantFormatService method find.
// find by systemId
/**
* Retrieve a single VariantFormat object identified by systemId
*
* @param systemId systemId of the VariantFormat you wish to retrieve
* @return single VariantFormat object wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas find(String systemId) {
MetadataHateoas metadataHateoas = new MetadataHateoas(variantFormatRepository.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 VariantFormatService method findAll.
// All READ operations
/**
* Retrieve a list of all VariantFormat objects
*
* @return list of VariantFormat objects wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas findAll() {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) variantFormatRepository.findAll(), VARIANT_FORMAT);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations