use of nikita.webapp.security.Authorisation in project nikita-noark5-core by HiOA-ABI.
the class CountryService method createNewCountry.
// All CREATE operations
/**
* Persists a new Country object to the database.
*
* @param country Country object with values set
* @return the newly persisted Country object wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas createNewCountry(Country country) {
country.setDeleted(false);
country.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(countryRepository.save(country));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.webapp.security.Authorisation 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.webapp.security.Authorisation 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.webapp.security.Authorisation 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.webapp.security.Authorisation 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;
}
Aggregations