Package org.jitterbit.integration.server.engine.jdbc

Examples of org.jitterbit.integration.server.engine.jdbc.JdbcEngine.closeSession()


    @Override
    public WsJdbcError closeSession(WsJdbcSessionId sessionId) throws RemoteException {
        try {
            JdbcEngine engine = JdbcEngine.getEngine();
            engine.closeSession(new JdbcSessionId(sessionId.getSessionGuid()),
                            sessionId.getJitterbitUser(), sessionId.getMd5Pwd());
            return createForSuccess();
        } catch (Exception e) {
          return createForException(e, "closeSession");
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.