Examples: unlock method (Document - Java™)
This example attempts to unlock the selected document. Unlocking is successful if the effective user is one of the lock holders.
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();
DocumentCollection dc = agentContext.getUnprocessedDocuments();
// Document locking must be enabled
if (db.isDocumentLockingEnabled()) {
// Get document and unlock
// Not unlocked if exception thrown
Document doc = dc.getFirstDocument();
doc.unlock();
System.out.println("document unlocked");
}
else
System.out.println("Document locking not enabled");
} catch(NotesException e) {
System.out.println(e.id + "document not unlocked");
} catch(Exception e) {
e.printStackTrace();
}
}
}