Package org.jboss.ws.extensions.security

Examples of org.jboss.ws.extensions.security.UnsupportedSecurityTokenException


         else if (tag.equals("Signature"))
            securityProcesses.add(new Signature(child, resolver));
         else if (tag.equals("EncryptedKey"))
            securityProcesses.add(new EncryptedKey(child, resolver));
         else if (tag.equals("ReferenceList"))
            throw new UnsupportedSecurityTokenException("ReferenceLists outside of encrypted keys (shared secrets) are not supported.");

         child = Util.getNextSiblingElement(child);
      }
   }
View Full Code Here


/*  86 */       } else if (tag.equals("Signature")) {
/*  87 */         this.securityProcesses.add(new Signature(child, resolver));
/*  88 */       } else if (tag.equals("EncryptedKey")) {
/*  89 */         this.securityProcesses.add(new EncryptedKey(child, resolver));
/*  90 */       } else if (tag.equals("ReferenceList")) {
/*  91 */         throw new UnsupportedSecurityTokenException("ReferenceLists outside of encrypted keys (shared secrets) are not supported.");
/*     */       }
/*  93 */       child = Util.getNextSiblingElement(child);
/*     */     }
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.ws.extensions.security.UnsupportedSecurityTokenException

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.