Search in sources :

Example 91 with MetadataHateoas

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

the class ElectronicSignatureVerifiedService method find.

// find by systemId
/**
 * Retrieve a single ElectronicSignatureVerified object identified by
 * systemId
 *
 * @param systemId systemId of the ElectronicSignatureVerified you wish
 *                 to retrieve
 * @return single ElectronicSignatureVerified object wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas find(String systemId) {
    MetadataHateoas metadataHateoas = new MetadataHateoas(electronicSignatureVerifiedRepository.save(electronicSignatureVerifiedRepository.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 92 with MetadataHateoas

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

the class ElectronicSignatureVerifiedService method findAll.

// All READ operations
/**
 * Retrieve a list of all ElectronicSignatureVerified objects
 *
 * @return list of ElectronicSignatureVerified objects wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas findAll() {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) electronicSignatureVerifiedRepository.findAll(), ELECTRONIC_SIGNATURE_VERIFIED);
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : INikitaEntity(nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity) Authorisation(nikita.webapp.security.Authorisation) List(java.util.List) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 93 with MetadataHateoas

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

the class ElectronicSignatureVerifiedService method findByDescription.

/**
 * Retrieve all ElectronicSignatureVerified 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 ElectronicSignatureVerified objects wrapped as a
 * MetadataHateoas object
 */
@Override
public MetadataHateoas findByDescription(String description) {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) electronicSignatureVerifiedRepository.findByDescription(description), ELECTRONIC_SIGNATURE_VERIFIED);
    metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
    return metadataHateoas;
}
Also used : INikitaEntity(nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity) Authorisation(nikita.webapp.security.Authorisation) List(java.util.List) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 94 with MetadataHateoas

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

the class FileTypeService method createNewFileType.

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

Example 95 with MetadataHateoas

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

the class FileTypeService method handleUpdate.

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

Aggregations

MetadataHateoas (nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)126 Authorisation (nikita.webapp.security.Authorisation)121 List (java.util.List)54 INikitaEntity (nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity)54 Counted (com.codahale.metrics.annotation.Counted)39 ApiOperation (io.swagger.annotations.ApiOperation)39 ApiResponses (io.swagger.annotations.ApiResponses)39 AfterNoarkEntityUpdatedEvent (nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)17 Timed (com.codahale.metrics.annotation.Timed)15 MetadataHateoas (nikita.model.noark5.v4.hateoas.metadata.MetadataHateoas)15 Authorisation (no.arkivlab.hioa.nikita.webapp.security.Authorisation)12 DocumentMedium (nikita.model.noark5.v4.metadata.DocumentMedium)4 CorrespondencePartType (nikita.common.model.noark5.v4.metadata.CorrespondencePartType)3 DocumentMedium (nikita.common.model.noark5.v4.metadata.DocumentMedium)3 CorrespondencePartType (nikita.model.noark5.v4.metadata.CorrespondencePartType)3 FondsStatus (nikita.model.noark5.v4.metadata.FondsStatus)3 DocumentStatus (nikita.common.model.noark5.v4.metadata.DocumentStatus)2 FondsStatus (nikita.common.model.noark5.v4.metadata.FondsStatus)2 SeriesStatus (nikita.common.model.noark5.v4.metadata.SeriesStatus)2 IMetadataEntity (nikita.common.model.noark5.v4.interfaces.entities.IMetadataEntity)1