Package com.sun.enterprise.deployment.runtime.connector

Examples of com.sun.enterprise.deployment.runtime.connector.MapElement.addPrincipal()


      throw new RuntimeException("Cannot set info on null descriptor");
  }
  if (newDescriptor instanceof Principal) {
      Principal principal = (Principal) newDescriptor;
      if (principal.getValue(Principal.CREDENTIAL)==null) {
    descriptor.addPrincipal(principal);
      } else {
    descriptor.setBackendPrincipal(true);
    descriptor.setAttributeValue(MapElement.BACKEND_PRINCIPAL, Principal.USER_NAME, principal.getValue(Principal.USER_NAME));
    descriptor.setAttributeValue(MapElement.BACKEND_PRINCIPAL, Principal.PASSWORD, principal.getValue(Principal.PASSWORD));
    descriptor.setAttributeValue(MapElement.BACKEND_PRINCIPAL, Principal.CREDENTIAL, principal.getValue(Principal.CREDENTIAL));
View Full Code Here


      throw new RuntimeException("Cannot set info on null descriptor");
  }
  if (newDescriptor instanceof Principal) {
      Principal principal = (Principal) newDescriptor;
      if (principal.getValue(Principal.CREDENTIAL)==null) {
    descriptor.addPrincipal(principal);
      } else {
    descriptor.setBackendPrincipal(true);
    descriptor.setAttributeValue(MapElement.BACKEND_PRINCIPAL, Principal.USER_NAME, principal.getValue(Principal.USER_NAME));
    descriptor.setAttributeValue(MapElement.BACKEND_PRINCIPAL, Principal.PASSWORD, principal.getValue(Principal.PASSWORD));
    descriptor.setAttributeValue(MapElement.BACKEND_PRINCIPAL, Principal.CREDENTIAL, principal.getValue(Principal.CREDENTIAL));
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.