JAVA/CORBA-KLASSEN
Examples: Common property
1. This agent creates a hierarchical name then displays the common name.
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
// (Your code goes here)
// Create a hierarchical name
Name nam = session.createName(
"CN=John B Goode/OU=Sales/OU=East/O=Acme/C=US");
// Returns:
// John B Goode
System.out.println(nam.getCommon());
} catch(Exception e) {
e.printStackTrace();
}
}
}
2. This agent creates an Internet name then displays the common name (LocalPart).
import lotus.domino.*;
public class JavaAgent extends AgentBase {
public void NotesMain() {
try {
Session session = getSession();
AgentContext agentContext = session.getAgentContext();
// (Your code goes here)
// Create a hierarchical name
Name nam = session.createName(
"John_B_Goode@us.acme.com");
// Returns:
// John_B_Goode
System.out.println(nam.getCommon());
} catch(Exception e) {
e.printStackTrace();
}
}
}
Siehe auch
Common property
Glossar
Ihre Kommentare zur
Hilfe
oder zur
Verwendbarkeit der Software
?
Hilfe zur Hilfe
Inhalt der gesamten Hilfe
Glossar