我正在实现Filenet Java步骤处理器。我必须从对象存储中获取一个文档,修改并将修改后的版本存储到同一个对象存储中。我有一个可运行的测试小程序。我不能要求用户额外发送登录名和密码,我必须使用VWSession
对象。我必须得到的文件作为步骤附件发送。我知道如何获取附加的文档ID。如何使用VWSession
对象作为我到对象存储的连接点,从Java Step Processor中按ID获取文档?
获取一个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;
}
}
获取用户凭据并没有那么困难。在stepprocessor java模块中,只需dop以下内容:
String userName = controller.getDataStore().getServerCredentials().getUserId();
String userPwd = controller.getDataStore().getServerCredentials().getPassword();
对于获取文档,你的意思是,通常你不会通过VWConnection获得,而是通过内容引擎连接获得。
通过ID:获取您的文档
Factory.Document.fetchInstance(objectStore, guid, null);
希望它能帮助