Search in sources :

Example 1 with SignOffMethod

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

the class SignOffMethodService method handleUpdate.

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

Example 2 with SignOffMethod

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

the class SignOffMethodService method findByCode.

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

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

the class SignOffMethodService method getSignOffMethodOrThrow.

/**
 * Internal helper method. Rather than having a find and try catch in
 * multiple methods, we have it here once. If you call this, be aware
 * that you will only ever get a valid SignOffMethod object back. If there
 * is no SignOffMethod object, a NoarkEntityNotFoundException exception
 * is thrown
 *
 * @param systemId The systemId of the SignOffMethod object to retrieve
 * @return the SignOffMethod object
 */
private SignOffMethod getSignOffMethodOrThrow(@NotNull String systemId) {
    SignOffMethod SignOffMethod = SignOffMethodRepository.findBySystemId(systemId);
    if (SignOffMethod == null) {
        String info = INFO_CANNOT_FIND_OBJECT + " SignOffMethod, using " + "systemId " + systemId;
        logger.error(info);
        throw new NoarkEntityNotFoundException(info);
    }
    return SignOffMethod;
}
Also used : SignOffMethod(nikita.common.model.noark5.v4.metadata.SignOffMethod) NoarkEntityNotFoundException(nikita.common.util.exceptions.NoarkEntityNotFoundException)

Example 4 with SignOffMethod

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

the class SignOffMethodService method find.

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

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

the class SignOffMethodService method findByDescription.

/**
 * Retrieve all SignOffMethod that have a given description.
 * <br>
 * Note, this will be replaced by OData search.
 *
 * @param description
 * @return A list of SignOffMethod objects wrapped as a MetadataHateoas
 * object
 */
@Override
public MetadataHateoas findByDescription(String description) {
    MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) SignOffMethodRepository.findByDescription(description), SIGN_OFF_METHOD);
    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)6 Authorisation (nikita.webapp.security.Authorisation)6 List (java.util.List)3 INikitaEntity (nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity)3 SignOffMethod (nikita.common.model.noark5.v4.metadata.SignOffMethod)3 NoarkEntityNotFoundException (nikita.common.util.exceptions.NoarkEntityNotFoundException)1 AfterNoarkEntityUpdatedEvent (nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)1