Examples of SessionProfileBean


Examples of org.beangle.ems.security.session.model.SessionProfileBean

    return profiles;

  }

  private SessionProfileBean getProfile() {
    SessionProfileBean profile = null;
    final OqlBuilder<SessionProfileBean> builder = OqlBuilder.from(SessionProfileBean.class, "p");
    if (null != serverName) {
      builder.where("p.name=:serverName", serverName);
    }
    List<SessionProfileBean> profiles = entityDao.search(builder);
    if (profiles.isEmpty()) {
      profile = new SessionProfileBean(DefauleServerName, 1, 30);
      entityDao.saveOrUpdate(profile);
    } else {
      profile = profiles.get(0);
      if (profiles.size() > 1) {
        log.warn("Multiple SessionProfile found,choose {} id {}.You should specify :serverName",
            profile.getName(), profile.getId());
      }
    }
    return profile;
  }
View Full Code Here

Examples of org.beangle.ems.security.session.model.SessionProfileBean

        .where("cp.group=:group", group).cacheable();
    return !entityDao.search(cbuilder).isEmpty();
  }

  private SessionProfileBean getProfile() {
    SessionProfileBean profile = null;
    final OqlBuilder<SessionProfileBean> builder = OqlBuilder.from(SessionProfileBean.class, "p");
    if (null != serverName) {
      builder.where("p.name=:serverName", serverName);
    }
    List<SessionProfileBean> profiles = entityDao.search(builder);
    if (profiles.isEmpty()) {
      profile = new SessionProfileBean(DefauleServerName, 1, 30);
      entityDao.saveOrUpdate(profile);
    } else {
      profile = profiles.get(0);
      if (profiles.size() > 1) {
        log.warn("Multiple SessionProfile found,choose {} id {}.You should specify :serverName",
            profile.getName(), profile.getId());
      }
    }
    return profile;
  }
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.