我正在实现 Filenet Java Step Processor。我必须从对象存储中获取文档,修改并将修改后的版本存储到同一个对象存储中。我有一个用于测试的工作小程序。我不能要求用户额外发送登录名和密码,我必须使用VWSession
对象。我必须获得的文件作为步骤附件发送。我知道如何获取附加的文档 ID。如何使用VWSession
对象作为我到对象存储的连接点从 Java 步骤处理器按 ID 获取文档?
问问题
885 次
2 回答
1
获取一个 ObjectStore 实例(从 VWSession 获取 domainId,并使用来自 VWSession 的 Connection 构造域)并将 Attachment 传递给以下方法:
private String getIdFromAttachment(VWAttachment att, ObjectStore os) {
if (att.getLibraryType() != 3) {
String libtype = String.valueOf(att.getLibraryType());
throw new VWException("hk.ibm.ecm.cpa.uwfcustomcomponent.InvalidLibraryType",
"Cannot convert object from non-CE repository, type {0}.", libtype);
}
String attId = att.getId();
switch (att.getType()) {
case 3:
case 4:
VersionSeries vs = (VersionSeries) os.getObject("VersionSeries", attId);
vs.refresh();
String ver = att.getVersion();
return getIdBasedOnVersion(vs, ver);
default:
return attId;
}
}
private String getIdBasedOnVersion(VersionSeries vs, String ver) {
if (ver == null) {
Document current = (Document) vs.get_CurrentVersion();
current.refresh();
return current.get_Id().toString();
} else if ("-1".equals(ver)) {
Document released = (Document) vs.get_ReleasedVersion();
released.refresh();
return released.get_Id().toString();
} else {
return ver;
}
}
于 2016-07-13T21:27:27.000 回答
-1
获取用户凭据并不难。在 stepprocessor java 模块中,只需执行以下操作:
String userName = controller.getDataStore().getServerCredentials().getUserId();
String userPwd = controller.getDataStore().getServerCredentials().getPassword();
为了获取您的意思的文档,通常您不会通过 VWConnection 而是通过内容引擎连接来获取它。
通过 ID 获取您的文件:
Factory.Document.fetchInstance(objectStore, guid, null);
希望能帮助到你
于 2014-03-25T07:15:15.420 回答