JAVA/CORBA CLASSES
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();
}
}
}
See Also
Common property
Glossary
Feedback on
Help
or
Product Usability
?
Help on Help
All Help Contents
Glossary