Uses of Interface
org.alfresco.rest.framework.resource.content.BasicContentInfo
-
-
Uses of BasicContentInfo in org.alfresco.rest.api
Methods in org.alfresco.rest.api with parameters of type BasicContentInfo Modifier and Type Method Description Node
Nodes. updateContent(java.lang.String fileNodeId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters parameters)
Uploads file content (updates existing node with new content).Person
People. uploadAvatarContent(java.lang.String personId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters parameters)
-
Uses of BasicContentInfo in org.alfresco.rest.api.impl
Methods in org.alfresco.rest.api.impl with parameters of type BasicContentInfo Modifier and Type Method Description Node
NodesImpl. updateContent(java.lang.String fileNodeId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters parameters)
Person
PeopleImpl. uploadAvatarContent(java.lang.String personId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters parameters)
-
Uses of BasicContentInfo in org.alfresco.rest.api.nodes
Methods in org.alfresco.rest.api.nodes with parameters of type BasicContentInfo Modifier and Type Method Description Node
NodesEntityResource. updateProperty(java.lang.String fileNodeId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters parameters)
Upload new version of content This allow binary content update of an existing file/content node. -
Uses of BasicContentInfo in org.alfresco.rest.api.people
Methods in org.alfresco.rest.api.people with parameters of type BasicContentInfo Modifier and Type Method Description Person
PeopleEntityResource. updateProperty(java.lang.String personId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters parameters)
Upload avatar image content -
Uses of BasicContentInfo in org.alfresco.rest.framework.resource.actions.interfaces
Methods in org.alfresco.rest.framework.resource.actions.interfaces with parameters of type BasicContentInfo Modifier and Type Method Description E
BinaryResourceAction.Update. updateProperty(java.lang.String entityId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters params)
Updates a binary property.E
BinaryResourceAction.UpdateWithResponse. updateProperty(java.lang.String entityId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters params, WithResponse withResponse)
Updates a binary property.E
RelationshipResourceBinaryAction.Update. updateProperty(java.lang.String entityId, java.lang.String entityResourceId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters params)
Updates a binary property.E
RelationshipResourceBinaryAction.UpdateWithResponse. updateProperty(java.lang.String entityId, java.lang.String entityResourceId, BasicContentInfo contentInfo, java.io.InputStream stream, Parameters params, WithResponse withResponse)
Updates a binary property. -
Uses of BasicContentInfo in org.alfresco.rest.framework.resource.content
Subinterfaces of BasicContentInfo in org.alfresco.rest.framework.resource.content Modifier and Type Interface Description interface
ContentInfo
Basic information about content.Classes in org.alfresco.rest.framework.resource.content that implement BasicContentInfo Modifier and Type Class Description class
BinaryProperty
A POJO property that is of type "Binary" You can add this to your object to be serialized as a normal property.class
ContentInfoImpl
Basic implementation of information about the returned content. -
Uses of BasicContentInfo in org.alfresco.rest.framework.resource.parameters
Methods in org.alfresco.rest.framework.resource.parameters that return BasicContentInfo Modifier and Type Method Description BasicContentInfo
Parameters. getContentInfo()
Gets the basic information about content, typically taken from a HTTPServletRequest.BasicContentInfo
Params. getContentInfo()
Methods in org.alfresco.rest.framework.resource.parameters with parameters of type BasicContentInfo Modifier and Type Method Description static Params
Params. valueOf(boolean isCollectionResource, java.lang.String entityId, java.lang.String relationshipId, java.lang.String relationship2Id, java.lang.Object passedIn, java.io.InputStream stream, java.lang.String addressedProperty, Params.RecognizedParams recognizedParams, BasicContentInfo contentInfo, org.springframework.extensions.webscripts.WebScriptRequest request)
static Params
Params. valueOf(java.lang.String entityId, java.lang.String relationshipId, java.lang.Object passedIn, java.io.InputStream stream, java.lang.String addressedProperty, Params.RecognizedParams recognizedParams, BasicContentInfo contentInfo, org.springframework.extensions.webscripts.WebScriptRequest request)
Constructors in org.alfresco.rest.framework.resource.parameters with parameters of type BasicContentInfo Constructor Description Params(java.lang.Boolean isCollectionResource, java.lang.String entityId, java.lang.String relationshipId, java.lang.String relationship2Id, java.lang.Object passedIn, java.io.InputStream stream, java.lang.String addressedProperty, Params.RecognizedParams recognizedParams, BasicContentInfo contentInfo, org.springframework.extensions.webscripts.WebScriptRequest request)
-