Examples of CategoryProfileUpdateEvent


Examples of org.beangle.security.core.session.category.CategoryProfileUpdateEvent

  }

  public void saveOrUpdate(List<CategoryProfileBean> profiles) {
    entityDao.saveOrUpdate(profiles);
    for (CategoryProfileBean profile : profiles) {
      publish(new CategoryProfileUpdateEvent(new CategoryProfile(profile.getCategory().getTitle(),
          profile.getCapacity(), profile.getUserMaxSessions(), profile.getInactiveInterval())));
    }
  }
View Full Code Here

Examples of org.beangle.security.core.session.category.CategoryProfileUpdateEvent

  }

  public void saveOrUpdate(List<GroupSessionProfileBean> profiles) {
    entityDao.saveOrUpdate(profiles);
    for (GroupSessionProfileBean profile : profiles) {
      publish(new CategoryProfileUpdateEvent(new CategoryProfile(profile.getGroup().getName(),
          profile.getCapacity(), profile.getUserMaxSessions(), profile.getInactiveInterval())));
    }
  }
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.