*/
public class NuxeoUtils {
+ /** The logger. */
private static Logger logger = LoggerFactory.getLogger(NuxeoUtils.class);
/**
return doc;
}
+/**
+ * Gets the document.
+ *
+ * @param repoSession the repo session
+ * @param csid the csid
+ *
+ * @return the document
+ *
+ * @throws DocumentException the document exception
+ */
public static Document getDocument(RepositoryInstance repoSession, String csid)
throws DocumentException {
Document result = null;
return result;
}
+ /**
+ * Gets the workspace model.
+ *
+ * @param repoSession the repo session
+ * @param workspaceName the workspace name
+ *
+ * @return the workspace model
+ *
+ * @throws DocumentException the document exception
+ * @throws IOException Signals that an I/O exception has occurred.
+ * @throws ClientException the client exception
+ */
public static DocumentModel getWorkspaceModel(
RepositoryInstance repoSession, String workspaceName)
throws DocumentException, IOException, ClientException {
return result;
}
+ /**
+ * Gets the document model.
+ *
+ * @param repoSession the repo session
+ * @param csid the csid
+ *
+ * @return the document model
+ *
+ * @throws DocumentException the document exception
+ */
public static DocumentModel getDocumentModel(
RepositoryInstance repoSession, String csid)
throws DocumentException {