Package com.alfresco.content.apis
Interface NodesApiExt
-
- All Implemented Interfaces:
public interface NodesApiExt
-
-
Method Summary
Modifier and Type Method Description abstract NodeEntrycreateNode(@Path(value = "nodeId") String nodeId, @Part(value = "filedata"; filename="filedata") RequestBody fileData, @Part(value = "name") String name, @Part(value = "nodeType") String nodeType, @PartMap() Map<String, RequestBody> properties, @Part(value = "overwrite") Boolean overwrite, @Part(value = "comment") String comment, @Part(value = "relativepath") String relativePath, @Part(value = "renditions") String renditions, @Part(value = "autoRename") Boolean autoRename, @Part(value = "majorVersion") Boolean majorVersion, @Part(value = "versioningEnabled") Boolean versioningEnabled, @Part(value = "include") List<String> include, @Part(value = "fields") List<String> fields)Multipart definition for NodesApi.createNode. -
-
Method Detail
-
createNode
@Multipart()@POST(value = "alfresco/versions/1/nodes/{nodeId}/children") abstract NodeEntry createNode(@Path(value = "nodeId") String nodeId, @Part(value = "filedata"; filename="filedata") RequestBody fileData, @Part(value = "name") String name, @Part(value = "nodeType") String nodeType, @PartMap() Map<String, RequestBody> properties, @Part(value = "overwrite") Boolean overwrite, @Part(value = "comment") String comment, @Part(value = "relativepath") String relativePath, @Part(value = "renditions") String renditions, @Part(value = "autoRename") Boolean autoRename, @Part(value = "majorVersion") Boolean majorVersion, @Part(value = "versioningEnabled") Boolean versioningEnabled, @Part(value = "include") List<String> include, @Part(value = "fields") List<String> fields)Multipart definition for NodesApi.createNode.
-
-
-
-