use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class FlowStatusService method findByDescription.
/**
* Retrieve all FlowStatus 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 FlowStatus objects wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) flowStatusRepository.findByDescription(description), FLOW_STATUS);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class FormatService method handleUpdate.
/**
* Update a Format identified by its systemId
* <p>
* Copy the values you are allowed to change, code and description
*
* @param systemId The systemId of the format object you wish to update
* @param format The updated format object. Note the values you are
* allowed to change are copied from this object. This
* object is not persisted.
* @return the updated format
*/
@Override
public MetadataHateoas handleUpdate(String systemId, Long version, Format format) {
Format existingFormat = getFormatOrThrow(systemId);
// Copy all the values you are allowed to copy ....
if (null != existingFormat.getCode()) {
existingFormat.setCode(existingFormat.getCode());
}
if (null != existingFormat.getDescription()) {
existingFormat.setDescription(existingFormat.getDescription());
}
// Note this can potentially result in a NoarkConcurrencyException
// exception
existingFormat.setVersion(version);
MetadataHateoas formatHateoas = new MetadataHateoas(formatRepository.save(existingFormat));
metadataHateoasHandler.addLinks(formatHateoas, new Authorisation());
applicationEventPublisher.publishEvent(new AfterNoarkEntityUpdatedEvent(this, existingFormat));
return formatHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class FormatService method createNewFormat.
// All CREATE operations
/**
* Persists a new Format object to the database.
*
* @param format Format object with values set
* @return the newly persisted Format object wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas createNewFormat(Format format) {
format.setDeleted(false);
format.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(formatRepository.save(format));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class FormatService method find.
// find by systemId
/**
* Retrieve a single Format object identified by systemId
*
* @param systemId systemId of the Format you wish to retrieve
* @return single Format object wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas find(String systemId) {
MetadataHateoas metadataHateoas = new MetadataHateoas(formatRepository.save(formatRepository.findBySystemId(systemId)));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class PostalCodeService method findByDescription.
/**
* Retrieve all PostalCode 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 PostalCode objects wrapped as a MetadataHateoas
* object
*/
@Override
public MetadataHateoas findByDescription(String description) {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) postalCodeRepository.findByDescription(description), POST_CODE);
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations