| package testing; |
| |
| import java.io.FileInputStream; |
| import java.util.Properties; |
| |
| import lotus.domino.NotesFactory; |
| import lotus.domino.NotesThread; |
| import lotus.domino.Session; |
| |
| |
| |
| |
| |
| public class SessionFactory { |
| |
| |
| |
| |
| static private SessionFactory theInstance; |
| |
| |
| |
| |
| private String token; |
| |
| |
| |
| |
| private Properties properties; |
| |
| |
| |
| |
| private SessionFactory() throws ModuleException { |
| try { |
| this.properties = new Properties(); |
| this.properties.load(new FileInputStream("factory.properties")); |
| } catch (Exception e) { |
| throw new ModuleException ("can not load properties", e); |
| } |
| } |
| |
| |
| |
| |
| private String getHost() { |
| return this.properties.getProperty("host"); |
| } |
| |
| |
| |
| |
| private String getUser() { |
| return this.properties.getProperty("user"); |
| } |
| |
| |
| |
| |
| private String getPassword() { |
| return this.properties.getProperty("password"); |
| } |
| |
| |
| |
| |
| private String getToken() { |
| return token; |
| } |
| |
| |
| |
| |
| private void setToken(String token) { |
| this.token = token; |
| } |
| |
| |
| |
| |
| static private SessionFactory getInstance() throws ModuleException { |
| if (SessionFactory.theInstance == null) { |
| SessionFactory.theInstance = new SessionFactory(); |
| } |
| |
| return SessionFactory.theInstance; |
| } |
| |
| private void initSession() throws ModuleException { |
| try { |
| Session session = NotesFactory.createSession( |
| this.getHost(), |
| this.getUser(), |
| this.getPassword()); |
| |
| this.setToken(session.getSessionToken()); |
| |
| session.recycle(); |
| |
| } catch (Exception e) { |
| throw new ModuleException ("can not init a session", e); |
| } |
| } |
| |
| protected void finalize () { |
| try { |
| if (this.getToken() != null) { |
| Session session = NotesFactory.createSession( |
| this.getHost(), |
| this.getToken()); |
| |
| session.recycle(); |
| } |
| } catch (Exception e) { |
| e.printStackTrace(); |
| } |
| } |
| |
| |
| |
| |
| synchronized static public Session createSession() throws ModuleException { |
| try { |
| Session session = null; |
| |
| if (NotesThread.isLoaded) { |
| session = NotesFactory.createSession(); |
| } else { |
| SessionFactory factory = SessionFactory.getInstance(); |
| |
| if (factory.getToken() == null) { |
| factory.initSession(); |
| } |
| |
| session = NotesFactory.createSession( |
| factory.getHost(), |
| factory.getToken()); |
| } |
| |
| return session; |
| } catch (Exception e) { |
| throw new ModuleException("can not get a session", e); |
| } |
| } |
| } |