use of nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity in project nikita-noark5-core by HiOA-ABI.
the class CaseFileHateoasController method findAllCaseFile.
@ApiOperation(value = "Retrieves multiple CaseFile entities limited by ownership rights", notes = "The field skip" + "tells how many CaseFile rows of the result set to ignore (starting at 0), while top tells how many rows" + " after skip to return. Note if the value of top is greater than system value " + " nikita-noark5-core.pagination.maxPageSize, then nikita-noark5-core.pagination.maxPageSize is used. ", response = CaseFileHateoas.class)
@ApiResponses(value = { @ApiResponse(code = 200, message = "CaseFile list found", response = CaseFileHateoas.class), @ApiResponse(code = 401, message = API_MESSAGE_UNAUTHENTICATED_USER), @ApiResponse(code = 403, message = API_MESSAGE_UNAUTHORISED_FOR_USER), @ApiResponse(code = 500, message = API_MESSAGE_INTERNAL_SERVER_ERROR) })
@Counted
@Timed
@RequestMapping(method = RequestMethod.GET)
public ResponseEntity<CaseFileHateoas> findAllCaseFile(final UriComponentsBuilder uriBuilder, HttpServletRequest request, final HttpServletResponse response, @RequestParam(name = "top", required = false) Integer top, @RequestParam(name = "skip", required = false) Integer skip) {
CaseFileHateoas caseFileHateoas = new CaseFileHateoas((ArrayList<INikitaEntity>) (ArrayList) caseFileService.findCaseFileByOwnerPaginated(top, skip));
caseFileHateoasHandler.addLinks(caseFileHateoas, request, new Authorisation());
return ResponseEntity.status(HttpStatus.OK).allow(CommonUtils.WebUtils.getMethodsForRequestOrThrow(request.getServletPath())).body(caseFileHateoas);
}
use of nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity in project nikita-noark5-core by HiOA-ABI.
the class BasicRecordHateoasSerializer method serializeNoarkEntity.
@Override
public void serializeNoarkEntity(INikitaEntity noarkSystemIdEntity, HateoasNoarkObject basicRecordHateoas, JsonGenerator jgen) throws IOException {
BasicRecord basicRecord = (BasicRecord) noarkSystemIdEntity;
jgen.writeStartObject();
// handle the record properties first
CommonUtils.Hateoas.Serialize.printSystemIdEntity(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printCreateEntity(jgen, basicRecord);
if (basicRecord.getArchivedDate() != null) {
jgen.writeStringField(RECORD_ARCHIVED_DATE, Serialize.formatDateTime(basicRecord.getArchivedDate()));
}
if (basicRecord.getArchivedBy() != null) {
jgen.writeStringField(RECORD_ARCHIVED_BY, basicRecord.getArchivedBy());
}
CommonUtils.Hateoas.Serialize.printDisposal(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printScreening(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printClassified(jgen, basicRecord);
// handle general basicRecord properties
if (basicRecord.getTitle() != null) {
jgen.writeStringField(TITLE, basicRecord.getTitle());
}
if (basicRecord.getOfficialTitle() != null) {
jgen.writeStringField(FILE_PUBLIC_TITLE, basicRecord.getOfficialTitle());
}
if (basicRecord.getDescription() != null) {
jgen.writeStringField(DESCRIPTION, basicRecord.getDescription());
}
CommonUtils.Hateoas.Serialize.printKeyword(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printDocumentMedium(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printStorageLocation(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printComment(jgen, basicRecord);
// TODO: FIX THIS CommonCommonUtils.Hateoas.Serialize.printCrossReference(jgen, basicRecord);
CommonUtils.Hateoas.Serialize.printHateoasLinks(jgen, basicRecordHateoas.getLinks(basicRecord));
jgen.writeEndObject();
}
use of nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity in project nikita-noark5-core by HiOA-ABI.
the class ClassHateoasSerializer method serializeNoarkEntity.
@Override
public void serializeNoarkEntity(INikitaEntity noarkSystemIdEntity, HateoasNoarkObject classHateoas, JsonGenerator jgen) throws IOException {
Class klass = (Class) noarkSystemIdEntity;
jgen.writeStartObject();
CommonUtils.Hateoas.Serialize.printSystemIdEntity(jgen, klass);
CommonUtils.Hateoas.Serialize.printTitleAndDescription(jgen, klass);
CommonUtils.Hateoas.Serialize.printCreateEntity(jgen, klass);
CommonUtils.Hateoas.Serialize.printFinaliseEntity(jgen, klass);
// TODO: Fix this ! CommonCommonUtils.Hateoas.Serialize.printCrossReference(jgen, klass);
CommonUtils.Hateoas.Serialize.printDisposal(jgen, klass);
CommonUtils.Hateoas.Serialize.printScreening(jgen, klass);
CommonUtils.Hateoas.Serialize.printClassified(jgen, klass);
CommonUtils.Hateoas.Serialize.printHateoasLinks(jgen, classHateoas.getLinks(klass));
jgen.writeEndObject();
}
use of nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity in project nikita-noark5-core by HiOA-ABI.
the class DocumentDescriptionHateoasSerializer method serializeNoarkEntity.
@Override
public void serializeNoarkEntity(INikitaEntity noarkEntity, HateoasNoarkObject documentDescriptionHateoas, JsonGenerator jgen) throws IOException {
DocumentDescription documentDescription = (DocumentDescription) noarkEntity;
jgen.writeStartObject();
// handle DocumentDescription properties
CommonUtils.Hateoas.Serialize.printSystemIdEntity(jgen, documentDescription);
if (documentDescription.getDocumentType() != null) {
jgen.writeStringField(DOCUMENT_DESCRIPTION_DOCUMENT_TYPE, documentDescription.getDocumentType());
}
if (documentDescription.getDocumentStatus() != null) {
jgen.writeStringField(DOCUMENT_DESCRIPTION_STATUS, documentDescription.getDocumentStatus());
}
CommonUtils.Hateoas.Serialize.printTitleAndDescription(jgen, documentDescription);
if (documentDescription.getDocumentNumber() != null) {
jgen.writeNumberField(DOCUMENT_DESCRIPTION_DOCUMENT_NUMBER, documentDescription.getDocumentNumber().intValue());
}
CommonUtils.Hateoas.Serialize.printCreateEntity(jgen, documentDescription);
if (documentDescription.getAssociationDate() != null) {
jgen.writeStringField(DOCUMENT_DESCRIPTION_ASSOCIATION_DATE, Serialize.formatDate(documentDescription.getAssociationDate()));
}
if (documentDescription.getAssociatedWithRecordAs() != null) {
jgen.writeStringField(DOCUMENT_DESCRIPTION_ASSOCIATED_WITH_RECORD_AS, documentDescription.getAssociatedWithRecordAs());
}
CommonUtils.Hateoas.Serialize.printComment(jgen, documentDescription);
CommonUtils.Hateoas.Serialize.printDisposal(jgen, documentDescription);
CommonUtils.Hateoas.Serialize.printDisposalUndertaken(jgen, documentDescription);
CommonUtils.Hateoas.Serialize.printDeletion(jgen, documentDescription);
CommonUtils.Hateoas.Serialize.printScreening(jgen, documentDescription);
CommonUtils.Hateoas.Serialize.printClassified(jgen, documentDescription);
if (documentDescription.getStorageLocation() != null) {
jgen.writeStringField(STORAGE_LOCATION, documentDescription.getStorageLocation());
}
CommonUtils.Hateoas.Serialize.printElectronicSignature(jgen, documentDescription);
CommonUtils.Hateoas.Serialize.printHateoasLinks(jgen, documentDescriptionHateoas.getLinks(documentDescription));
jgen.writeEndObject();
}
use of nikita.common.model.noark5.v4.interfaces.entities.INikitaEntity in project nikita-noark5-core by HiOA-ABI.
the class FileHateoasSerializer method serializeNoarkEntity.
@Override
public void serializeNoarkEntity(INikitaEntity noarkSystemIdEntity, HateoasNoarkObject fileHateoas, JsonGenerator jgen) throws IOException {
File file = (File) noarkSystemIdEntity;
jgen.writeStartObject();
CommonUtils.Hateoas.Serialize.printSystemIdEntity(jgen, file);
CommonUtils.Hateoas.Serialize.printStorageLocation(jgen, file);
if (file.getFileId() != null) {
jgen.writeStringField(FILE_ID, file.getFileId());
if (file.getTitle() != null) {
jgen.writeStringField(TITLE, file.getTitle());
}
if (file.getOfficialTitle() != null) {
jgen.writeStringField(FILE_PUBLIC_TITLE, file.getOfficialTitle());
}
if (file.getDescription() != null) {
jgen.writeStringField(DESCRIPTION, file.getDescription());
}
}
CommonUtils.Hateoas.Serialize.printDocumentMedium(jgen, file);
CommonUtils.Hateoas.Serialize.printKeyword(jgen, file);
CommonUtils.Hateoas.Serialize.printCreateEntity(jgen, file);
CommonUtils.Hateoas.Serialize.printFinaliseEntity(jgen, file);
if (file.getReferenceSeries() != null && file.getReferenceSeries().getSystemId() != null) {
jgen.writeStringField(REFERENCE_SERIES, file.getReferenceSeries().getSystemId());
}
//TODO: CommonCommonUtils.Hateoas.Serialize.printCrossReference(jgen, file.getReferenceCrossReference());
CommonUtils.Hateoas.Serialize.printComment(jgen, file);
CommonUtils.Hateoas.Serialize.printDisposal(jgen, file);
CommonUtils.Hateoas.Serialize.printScreening(jgen, file);
CommonUtils.Hateoas.Serialize.printClassified(jgen, file);
CommonUtils.Hateoas.Serialize.printHateoasLinks(jgen, fileHateoas.getLinks(file));
jgen.writeEndObject();
}
Aggregations