Search in sources :

Example 6 with ElectronicSignatureSecurityLevel

use of nikita.common.model.noark5.v4.metadata.ElectronicSignatureSecurityLevel in project nikita-noark5-core by HiOA-ABI.

the class ElectronicSignatureSecurityLevelService method find.

// find by systemId
/**
 * Retrieve a single ElectronicSignatureSecurityLevel object identified by
 * systemId
 *
 * @param systemId systemId of the ElectronicSignatureSecurityLevel you wish
 *                 to retrieve
 * @return single ElectronicSignatureSecurityLevel object wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas find(String systemId) {
    MetadataHateoas metadataHateoas = new MetadataHateoas(electronicSignatureSecurityLevelRepository.save(electronicSignatureSecurityLevelRepository.findBySystemId(systemId)));
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 7 with ElectronicSignatureSecurityLevel

use of nikita.common.model.noark5.v4.metadata.ElectronicSignatureSecurityLevel in project nikita-noark5-core by HiOA-ABI.

the class ElectronicSignatureSecurityLevelService method handleUpdate.

/**
 * Update a ElectronicSignatureSecurityLevel identified by its systemId
 * <p>
 * Copy the values you are allowed to change, code and description
 *
 * @param systemId                         The systemId of the electronicSignatureSecurityLevel
 *                                         object you wish to update
 * @param electronicSignatureSecurityLevel The updated
 *                                         electronicSignatureSecurityLevel
 *                                         object. Note the values you
 *                                         are allowed to change are
 *                                         copied from this object. This
 *                                         object is not persisted.
 * @return the updated electronicSignatureSecurityLevel
 */
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, ElectronicSignatureSecurityLevel electronicSignatureSecurityLevel) {
    ElectronicSignatureSecurityLevel existingElectronicSignatureSecurityLevel = getElectronicSignatureSecurityLevelOrThrow(systemId);
    // Copy all the values you are allowed to copy ....
    if (null != existingElectronicSignatureSecurityLevel.getCode()) {
        existingElectronicSignatureSecurityLevel.setCode(existingElectronicSignatureSecurityLevel.getCode());
    }
    if (null != existingElectronicSignatureSecurityLevel.getDescription()) {
        existingElectronicSignatureSecurityLevel.setDescription(existingElectronicSignatureSecurityLevel.getDescription());
    }
    // Note this can potentially result in a NoarkConcurrencyException
    // exception
    existingElectronicSignatureSecurityLevel.setVersion(version);
    MetadataHateoas electronicSignatureSecurityLevelHateoas = new MetadataHateoas(electronicSignatureSecurityLevelRepository.save(existingElectronicSignatureSecurityLevel));
    metadataHateoasHandler.addLinks(electronicSignatureSecurityLevelHateoas, new Authorisation());
    applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingElectronicSignatureSecurityLevel));
    return electronicSignatureSecurityLevelHateoas;
}
Also used : ElectronicSignatureSecurityLevel(nikita.common.model.noark5.v4.metadata.ElectronicSignatureSecurityLevel) Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas) AfterNoarkEntityUpdatedEvent(nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)

Example 8 with ElectronicSignatureSecurityLevel

use of nikita.common.model.noark5.v4.metadata.ElectronicSignatureSecurityLevel in project nikita-noark5-core by HiOA-ABI.

the class ElectronicSignatureSecurityLevelService method createNewElectronicSignatureSecurityLevel.

// All CREATE operations
/**
 * Persists a new ElectronicSignatureSecurityLevel object to the database.
 *
 * @param electronicSignatureSecurityLevel ElectronicSignatureSecurityLevel
 *                                         object with values set
 * @return the newly persisted ElectronicSignatureSecurityLevel object
 * wrapped as a MetadataHateoas object
 */
@Override
public MetadataHateoas createNewElectronicSignatureSecurityLevel(ElectronicSignatureSecurityLevel electronicSignatureSecurityLevel) {
    electronicSignatureSecurityLevel.setDeleted(false);
    electronicSignatureSecurityLevel.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
    MetadataHateoas metadataHateoas = new MetadataHateoas(electronicSignatureSecurityLevelRepository.save(electronicSignatureSecurityLevel));
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Aggregations

MetadataHateoas (nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)6 Authorisation (nikita.webapp.security.Authorisation)6 List (java.util.List)3 INikitaEntity (nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity)3 ElectronicSignatureSecurityLevel (nikita.common.model.noark5.v4.metadata.ElectronicSignatureSecurityLevel)3 NoarkEntityNotFoundException (nikita.common.util.exceptions.NoarkEntityNotFoundException)1 AfterNoarkEntityUpdatedEvent (nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)1