Search in sources :

Example 81 with MetadataHateoas

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

the class DocumentTypeService method find.

// find by systemId
/**
 * Retrieve a single documentType object identified by systemId
 *
 * @param systemId
 * @return single documentType object wrapped as a MetadataHateoas object
 */
@Override
public MetadataHateoas find(String systemId) {
    MetadataHateoas metadataHateoas = new MetadataHateoas(documentTypeRepository.save(documentTypeRepository.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 82 with MetadataHateoas

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

the class DocumentTypeService method findByCode.

/**
 * retrieve all documentType that have a particular code.
 * <br>
 * Note, this will be replaced by OData search.
 *
 * @param code
 * @return A list of documentType objects wrapped as a MetadataHateoas
 * object
 */
@Override
public MetadataHateoas findByCode(String code) {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) documentTypeRepository.findByCode(code), DOCUMENT_TYPE);
    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 83 with MetadataHateoas

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

the class DocumentTypeService method createNewDocumentType.

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

Example 84 with MetadataHateoas

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

the class DocumentTypeService method handleUpdate.

/**
 * Update a documentType identified by its systemId
 * <p>
 * Copy the values you are allowed to change, code and description
 *
 * @param documentType
 * @return the updated documentType
 */
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, DocumentType documentType) {
    DocumentType existingDocumentType = getDocumentTypeOrThrow(systemId);
    // Copy all the values you are allowed to copy ....
    if (null != existingDocumentType.getCode()) {
        existingDocumentType.setCode(existingDocumentType.getCode());
    }
    if (null != existingDocumentType.getDescription()) {
        existingDocumentType.setDescription(existingDocumentType.getDescription());
    }
    // Note this can potentially result in a NoarkConcurrencyException
    // exception
    existingDocumentType.setVersion(version);
    MetadataHateoas documentTypeHateoas = new MetadataHateoas(documentTypeRepository.save(existingDocumentType));
    metadataHateoasHandler.addLinks(documentTypeHateoas, new Authorisation());
    applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingDocumentType));
    return documentTypeHateoas;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) DocumentType(nikita.common.model.noark5.v4.metadata.DocumentType) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas) AfterNoarkEntityUpdatedEvent(nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)

Example 85 with MetadataHateoas

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

the class DocumentTypeService method findAll.

// All READ operations
/**
 * Retrieve a list of all documentType objects
 *
 * @return list of documentType objects wrapped as a MetadataHateoas object
 */
@Override
public MetadataHateoas findAll() {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) documentTypeRepository.findAll(), DOCUMENT_TYPE);
    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)

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