You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Action Parameter of width, height that accept a value pixels or "auto" (missing or invalid parameter should return an error from the ActionsValidator
The action is processed in the DocumentActionsProcessor and should be a new DocumentAction.
The resized image will be a new document and then a relationship between the original document and the new document is a "RENDITION" relationship type.
Similar code below can be used to generate the relationships.
The resized image will be a new document and then a relationship between the original document and the new document is a "RENDITION" relationship type.
Similar code below can be used to generate the relationships.
String username = ApiAuthorization.getAuthorization().getUsername();
Collection documentAttributes0 =
dataDocumentIds.stream()
.flatMap(dataDocumentId -> new DocumentAttributeRecordBuilder().apply(documentId,
dataDocumentId, DocumentRelationshipType.DATASOURCE, null, username).stream())
.toList();
Collection documentAttributes1 = new DocumentAttributeRecordBuilder()
.apply(documentId, templateDocumentId, DocumentRelationshipType.TEMPLATE, null, username);
return Stream.concat(documentAttributes0.stream(), documentAttributes1.stream())
.filter(data -> !data.getDocumentId().equals(saveAsDocumentId)).toList();
The text was updated successfully, but these errors were encountered: