use of nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas in project nikita-noark5-core by HiOA-ABI.
the class CommentTypeService method findAll.
// All READ operations
/**
* Retrieve a list of all CommentType objects
*
* @return list of CommentType objects wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas findAll() {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) commentTypeRepository.findAll(), COMMENT_TYPE);
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 CommentTypeService method createNewCommentType.
// All CREATE operations
/**
* Persists a new CommentType object to the database.
*
* @param commentType CommentType object with values set
* @return the newly persisted CommentType object wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas createNewCommentType(CommentType commentType) {
commentType.setDeleted(false);
commentType.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(commentTypeRepository.save(commentType));
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 CountryService method find.
// find by systemId
/**
* Retrieve a single Country object identified by systemId
*
* @param systemId systemId of the Country you wish to retrieve
* @return single Country object wrapped as a MetadataHateoas object
*/
@Override
public MetadataHateoas find(String systemId) {
MetadataHateoas metadataHateoas = new MetadataHateoas(countryRepository.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 CountryService method findAll.
// All READ operations
/**
* Retrieve a list of all Country objects
*
* @return list of Country objects wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas findAll() {
MetadataHateoas metadataHateoas = new MetadataHateoas((List<INikitaEntity>) (List) countryRepository.findAll(), COUNTRY);
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 CountryService method createNewCountry.
// All CREATE operations
/**
* Persists a new Country object to the database.
*
* @param country Country object with values set
* @return the newly persisted Country object wrapped as a
* MetadataHateoas object
*/
@Override
public MetadataHateoas createNewCountry(Country country) {
country.setDeleted(false);
country.setOwnedBy(SecurityContextHolder.getContext().getAuthentication().getName());
MetadataHateoas metadataHateoas = new MetadataHateoas(countryRepository.save(country));
metadataHateoasHandler.addLinks(metadataHateoas, new Authorisation());
return metadataHateoas;
}
Aggregations