Package org.openbravo.model.ad.access

Examples of org.openbravo.model.ad.access.Session


      // do not kill current session
      msg.setType("Error");
      msg.setMessage("@NotAllowedToKillCurrentSession@");
      bundle.setResult(msg);
    } else {
      Session session = OBDal.getInstance().get(Session.class, sessionId);
      session.setSessionActive(false);
      msg.setType("Success");
      msg.setMessage("@Success@");
    }
    bundle.setResult(msg);
View Full Code Here

TOP

Related Classes of org.openbravo.model.ad.access.Session

Copyright © 2018 www.massapicom. 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.