Search in sources :

Example 1 with Country

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

the class CountryService method generateDefaultCountry.

/**
 * Generate a default Country object
 *
 * @return the Country object wrapped as a CountryHateoas object
 */
@Override
public Country generateDefaultCountry() {
    Country country = new Country();
    country.setCode(TEMPLATE_COUNTRY_CODE);
    country.setDescription(TEMPLATE_COUNTRY_DESCRIPTION);
    return country;
}
Also used : Country(nikita.common.model.noark5.v4.metadata.Country)

Example 2 with Country

use of nikita.common.model.noark5.v4.metadata.Country 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;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) MetadataHateoas(nikita.common.model.noark5.v4.hateoas.metadata.MetadataHateoas)

Example 3 with Country

use of nikita.common.model.noark5.v4.metadata.Country 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;
}
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 4 with Country

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

the class CountryService method getCountryOrThrow.

/**
 * 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 Country object back. If there
 * is no Country object, a NoarkEntityNotFoundException exception
 * is thrown
 *
 * @param systemId The systemId of the Country object to retrieve
 * @return the Country object
 */
private Country getCountryOrThrow(@NotNull String systemId) {
    Country country = countryRepository.findBySystemId(systemId);
    if (country == null) {
        String info = INFO_CANNOT_FIND_OBJECT + " Country, using " + "systemId " + systemId;
        logger.error(info);
        throw new NoarkEntityNotFoundException(info);
    }
    return country;
}
Also used : Country(nikita.common.model.noark5.v4.metadata.Country) NoarkEntityNotFoundException(nikita.common.util.exceptions.NoarkEntityNotFoundException)

Example 5 with Country

use of nikita.common.model.noark5.v4.metadata.Country 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;
}
Also used : Authorisation(nikita.webapp.security.Authorisation) 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 Country (nikita.common.model.noark5.v4.metadata.Country)3 NoarkEntityNotFoundException (nikita.common.util.exceptions.NoarkEntityNotFoundException)1 AfterNoarkEntityUpdatedEvent (nikita.webapp.web.events.AfterNoarkEntityUpdatedEvent)1