Examples of IAuthenticationService


Examples of com.vmware.bdd.security.service.IAuthenticationService

      String userName = (String) authentication.getPrincipal();
      String passwd = (String) authentication.getCredentials();

      try {
         IAuthenticationService userAuthenticationService =
               new UserAuthenticationService(new VCAuthenticationAdapter(
                     userName, passwd));
         userAuthenticationService.validate();
         UserDetails user =
               userService.loadUserByUsername(authentication.getName());
         UserAuthenticationToken accountAuthenticationToken =
               new UserAuthenticationToken(user.getAuthorities());
         return accountAuthenticationToken;
View Full Code Here

Examples of org.eclipse.orion.server.authentication.IAuthenticationService

    @Override
    public IAuthenticationService addingService(ServiceReference<IAuthenticationService> reference) {
      if ("true".equals(reference.getProperty(PROP_CONFIGURED))) //$NON-NLS-1$
        return null;

      IAuthenticationService authService = super.addingService(reference);
      Dictionary dictionary = new Properties();
      dictionary.put(PROP_CONFIGURED, "true"); //$NON-NLS-1$
      if (getService() != null) {
        getService().setRegistered(false);
      }
      authService.setRegistered(true);
      context.registerService(IAuthenticationService.class.getName(), authService, dictionary);
      return authService;
    }
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.