Package org.geomajas.security

Examples of org.geomajas.security.SavedAuthentication


  private final List<SavedAuthentication> authentications = new ArrayList<SavedAuthentication>();

  public SavedAuthorizationImpl(SecurityContext context) {
    if (null != context) {
      for (Authentication org : context.getSecurityServiceResults()) {
        SavedAuthentication sa = new SavedAuthenticationImpl();
        sa.setSecurityServiceId(org.getSecurityServiceId());
        sa.setAuthorizations(org.getAuthorizations());
        authentications.add(sa);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.geomajas.security.SavedAuthentication

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.