use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class DocumentTypeService method findByDescription.
/**
* Retrieve all documentType that have a given description.
* <br>
* Note, this will be replaced by OData search.
*
* @param description
* @return A list of documentType objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) documentTypeRepository.findByDescription(description), DOCUMENT_TYPE);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class ElectronicSignatureSecurityLevelService method findByCode.
/**
* retrieve all ElectronicSignatureSecurityLevel 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 ElectronicSignatureSecurityLevel objects wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas findByCode(String code) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) electronicSignatureSecurityLevelRepository.findByCode(code), ELECTRONIC_SIGNATURE_SECURITY_LEVEL);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class ElectronicSignatureVerifiedService method findByCode.
/**
* retrieve all ElectronicSignatureVerified 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 ElectronicSignatureVerified objects wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas findByCode(String code) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) electronicSignatureVerifiedRepository.findByCode(code), ELECTRONIC_SIGNATURE_VERIFIED);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class ElectronicSignatureVerifiedService method createNewElectronicSignatureVerified.
// All CREATE operations
/**
* Persists a new ElectronicSignatureVerified object to the database.
*
* @param electronicSignatureVerified ElectronicSignatureVerified
* object with values set
* @return the newly persisted ElectronicSignatureVerified object
* wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas createNewElectronicSignatureVerified(ElectronicSignatureVerified electronicSignatureVerified) {
electronicSignatureVerified.setDeleted(false);
electronicSignatureVerified.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(electronicSignatureVerifiedRepository.save(electronicSignatureVerified));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas 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;
}
Aggregations