JAVA/CORBA クラス
例:getDocumentByKey メソッド
1. 次のエージェントは、現在のデータベースの [By Category] ビュー内の「Spanish」で始まり、最初のカテゴリにある最初の文書を取得します。
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext =
session.getAgentContext();
// (Your code goes here)
Database db = agentContext.getCurrentDatabase();
View view = db.getView("By Category");
Document doc =
view.getDocumentByKey("Spanish leather", false);
if (doc != null)
doc.putInFolder("Boots");
} catch(Exception e) {
e.printStackTrace();
}
}
}
2. 次のエージェントは、現在のデータベースの [By Category] ビュー内のサブカテゴリ「Spanish leather」のカテゴリ「Boots」にある最初の文書を取得します。
import lotus.domino.*;
import java.util.Vector;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext =
session.getAgentContext();
// (Your code goes here)
Database db = agentContext.getCurrentDatabase();
View view = db.getView("By Category");
Vector v = new Vector();
v.addElement("Boots");
v.addElement("Spanish leather");
Document doc =
view.getDocumentByKey(v, false);
doc.putInFolder("Boots");
} catch(Exception e) {
e.printStackTrace();
}
}
}
関連項目
getDocumentByKey メソッド
用語集
フィードバック
ヘルプ
または
プロダクトユーザビリティ
ヘルプの使い方
すべてのヘルプ項目
用語集