组织ID: |
org.opensaml |
项目ID: |
openws |
版本: |
1.4.1 |
最后修改时间: |
2018-08-01 10:06:50 |
包类型: |
jar |
标题: |
OpenWS |
描述: |
The OpenWS library provides a growing set of tools to work with web services at a low level. These tools include
classes for creating and reading SOAP messages, transport-independent clients for connecting to web services,
and various transports for use with those clients.
|
相关URL: |
${dist.release.url} |
大小: |
551.23KB |
|
Maven引入代码: |
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>openws</artifactId>
<version>1.4.1</version>
</dependency>
|
Gradle引入代码: |
org.opensaml:openws:1.4.1
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.opensaml</groupId>
<artifactId>openws</artifactId>
<version>1.4.1</version>
<packaging>jar</packaging>
<name>OpenWS</name>
<description>
The OpenWS library provides a growing set of tools to work with web services at a low level. These tools include
classes for creating and reading SOAP messages, transport-independent clients for connecting to web services,
and various transports for use with those clients.
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<xerces.groupId>xerces</xerces.groupId>
<xerces.version>2.9.1</xerces.version>
</properties>
<distributionManagement>
<repository>
<id>release-repo</id>
<url>${dist.release.url}</url>
</repository>
</distributionManagement>
<dependencies>
<!-- Compile dependencies -->
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>xmltooling</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Provided dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>2.0.8</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
<version>2.0.8</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Runtime dependencies -->
<dependency>
<groupId>${xerces.groupId}</groupId>
<artifactId>xercesImpl</artifactId>
<version>${xerces.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
<version>1.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.1</version>
<scope>runtime</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>0.9.24</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<debug>true</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
<descriptor>src/main/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx256m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<index>true</index>
<manifestEntries>
<Main-Class>org.opensaml.ws.Version</Main-Class>
</manifestEntries>
<manifestSections>
<manifestSection>
<name>org/opensaml/ws/</name>
<manifestEntries>
<Implementation-Title>${pom.artifactId}</Implementation-Title>
<Implementation-Version>${pom.version}</Implementation-Version>
<Implementation-Vendor>www.opensaml.org</Implementation-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/ws/soap/soap11/</name>
<manifestEntries>
<Specification-Title>Simple Object Access Protocol (SOAP) 1.1</Specification-Title>
<Specification-Version>20000508</Specification-Version>
<Specification-Vendor>World Wide Web Consortium (W3C)</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/ws/wsfed/</name>
<manifestEntries>
<Specification-Title>WS-Federation</Specification-Title>
<Specification-Version>1.1</Specification-Version>
<Specification-Vendor>xmlsoap.org</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/ws/wsaddressing/</name>
<manifestEntries>
<Specification-Title>WS-Addressing</Specification-Title>
<Specification-Version>1.0</Specification-Version>
<Specification-Vendor>World Wide Web Consortium (W3C)</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/ws/wspolicy/</name>
<manifestEntries>
<Specification-Title>WS-Policy</Specification-Title>
<Specification-Version>1.2</Specification-Version>
<Specification-Vendor>xmlsoap.org</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/ws/wssecurity/</name>
<manifestEntries>
<Specification-Title>WS-Security</Specification-Title>
<Specification-Version>1.1</Specification-Version>
<Specification-Vendor>OASIS</Specification-Vendor>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/opensaml/ws/wstrust/</name>
<manifestEntries>
<Specification-Title>WS-Trust</Specification-Title>
<Specification-Version>1.3</Specification-Version>
<Specification-Vendor>OASIS</Specification-Vendor>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
</links>
<quiet>true</quiet>
<author>false</author>
<version>true</version>
<doctitle>${project.name} ${project.version} Java API.</doctitle>
<windowtitle>${project.name} ${project.version} Java API.</windowtitle>
<overview>src/main/java/overview.html</overview>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
<doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
<windowtitle>${project.name} ${project.version} Java API.</windowtitle>
<javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
<xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>release-javadoc</id>
<phase>package</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<executions>
<execution>
<id>release-jxr</id>
<phase>package</phase>
<goals>
<goal>jxr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<executions>
<execution>
<id>release-unitTest</id>
<phase>package</phase>
<goals>
<goal>report-only</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Project Metadata -->
<url>http://opensaml.org/</url>
<inceptionYear>2006</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Internet2</name>
<url>http://www.internet2.edu/</url>
</organization>
<issueManagement>
<system>JIRA</system>
<url>http://bugs.internet2.edu/</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>OpenSAML Users</name>
<subscribe>https://spaces.internet2.edu/display/OpenSAML/MailingList</subscribe>
<unsubscribe>https://spaces.internet2.edu/display/OpenSAML/MailingList</unsubscribe>
<post>mace-opensaml-users@internet2.edu</post>
<archive>https://mail.internet2.edu/wws/arc/mace-opensaml-users</archive>
<otherArchives>
<otherArchive>http://groups.google.com/group/opensaml-users</otherArchive>
</otherArchives>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:https://svn.middleware.georgetown.edu/java-openws/</connection>
<developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-openws/</developerConnection>
<tag>HEAD</tag>
<url>http://svn.middleware.georgetown.edu/view/?root=java-openws</url>
</scm>
<developers>
<developer>
<id>cantor</id>
<name>Scott Cantor</name>
<organization>The Ohio State University</organization>
<organizationUrl>http://www.ohio-state.edu/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>ndk</id>
<name>Nate Klingenstein</name>
<organization>Internet2</organization>
<organizationUrl>http://www.internet2.edu/</organizationUrl>
<roles>
<role>documentation</role>
</roles>
<timezone>-7</timezone>
</developer>
<developer>
<id>lajoie</id>
<name>Chad La Joie</name>
<organization>SWITCH</organization>
<organizationUrl>http://www.switch.ch/</organizationUrl>
<roles>
<role>developer</role>
<role>documentation</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>putmanb</id>
<name>Brent Putman</name>
<organization>Georgetown University</organization>
<organizationUrl>http://www.georgetown.edu/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
<developer>
<id>rdw</id>
<name>Rod Widdowson</name>
<organization>University of Edinburgh</organization>
<organizationUrl>http://www.ed.ac.uk/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
schema/ws-trust-1.3.xsd
schema/soap-envelope.xsd
schema/ws-addr.xsd
schema/oasis-200401-wss-wssecurity-utility-1.0.xsd
schema/oasis-wss-wssecurity-secext-1.1.xsd
schema/oasis-200401-wss-wssecurity-secext-1.0.xsd
schema/ws-policy.xsd
soap11-config.xml
wssecurity-config.xml
wsaddressing-config.xml
wstrust-config.xml
wsfed11-protocol-config.xml
org.opensaml.ws.wsfed.WSFedObjectBuilder.class
org.opensaml.ws.wsfed.RequestedSecurityToken.class
org.opensaml.ws.wsfed.WSFedObject.class
org.opensaml.ws.wsfed.RequestSecurityTokenResponse.class
org.opensaml.ws.wsfed.WSFedConstants.class
org.opensaml.ws.wsfed.AppliesTo.class
org.opensaml.ws.wsfed.impl.RequestedSecurityTokenBuilder.class
org.opensaml.ws.wsfed.impl.AppliesToBuilder.class
org.opensaml.ws.wsfed.impl.RequestedSecurityTokenUnmarshaller.class
org.opensaml.ws.wsfed.impl.AppliesToMarshaller.class
org.opensaml.ws.wsfed.impl.EndPointReferenceMarshaller.class
org.opensaml.ws.wsfed.impl.AddressUnmarshaller.class
org.opensaml.ws.wsfed.impl.RequestSecurityTokenResponseMarshaller.class
org.opensaml.ws.wsfed.impl.EndPointReferenceBuilder.class
org.opensaml.ws.wsfed.impl.RequestSecurityTokenResponseBuilder.class
org.opensaml.ws.wsfed.impl.EndPointReferenceUnmarshaller.class
org.opensaml.ws.wsfed.impl.AddressMarshaller.class
org.opensaml.ws.wsfed.impl.AddressBuilder.class
org.opensaml.ws.wsfed.impl.RequestedSecurityTokenMarshaller.class
org.opensaml.ws.wsfed.impl.RequestSecurityTokenResponseImpl.class
org.opensaml.ws.wsfed.impl.RequestSecurityTokenResponseUnmarshaller.class
org.opensaml.ws.wsfed.impl.AppliesToImpl.class
org.opensaml.ws.wsfed.impl.EndPointReferenceImpl.class
org.opensaml.ws.wsfed.impl.AppliesToUnmarshaller.class
org.opensaml.ws.wsfed.impl.RequestedSecurityTokenImpl.class
org.opensaml.ws.wsfed.impl.AddressImpl.class
org.opensaml.ws.wsfed.EndPointReference.class
org.opensaml.ws.wsfed.Address.class
org.opensaml.ws.wspolicy.WSPolicyObject.class
org.opensaml.ws.wspolicy.OperatorContentType.class
org.opensaml.ws.wspolicy.ExactlyOne.class
org.opensaml.ws.wspolicy.PolicyReference.class
org.opensaml.ws.wspolicy.WSPolicyConstants.class
org.opensaml.ws.wspolicy.PolicyAttachment.class
org.opensaml.ws.wspolicy.PolicyURIsBearing.class
org.opensaml.ws.wspolicy.AppliesTo.class
org.opensaml.ws.wspolicy.impl.PolicyAttachmentImpl.class
org.opensaml.ws.wspolicy.impl.OperatorContentTypeImpl.class
org.opensaml.ws.wspolicy.impl.AppliesToBuilder.class
org.opensaml.ws.wspolicy.impl.AllMarshaller.class
org.opensaml.ws.wspolicy.impl.AppliesToMarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyReferenceImpl.class
org.opensaml.ws.wspolicy.impl.PolicyAttachmentUnmarshaller.class
org.opensaml.ws.wspolicy.impl.AllImpl.class
org.opensaml.ws.wspolicy.impl.PolicyReferenceMarshaller.class
org.opensaml.ws.wspolicy.impl.AbstractWSPolicyObjectBuilder.class
org.opensaml.ws.wspolicy.impl.AllUnmarshaller.class
org.opensaml.ws.wspolicy.impl.ExactlyOneBuilder.class
org.opensaml.ws.wspolicy.impl.ExactlyOneImpl.class
org.opensaml.ws.wspolicy.impl.OperatorContentTypeUnmarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyUnmarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyBuilder.class
org.opensaml.ws.wspolicy.impl.AllBuilder.class
org.opensaml.ws.wspolicy.impl.AbstractWSPolicyObjectUnmarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyMarshaller.class
org.opensaml.ws.wspolicy.impl.AbstractWSPolicyObjectMarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyAttachmentMarshaller.class
org.opensaml.ws.wspolicy.impl.ExactlyOneMarshaller.class
org.opensaml.ws.wspolicy.impl.ExactlyOneUnmarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyImpl.class
org.opensaml.ws.wspolicy.impl.AbstractWSPolicyObject.class
org.opensaml.ws.wspolicy.impl.OperatorContentTypeMarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyReferenceUnmarshaller.class
org.opensaml.ws.wspolicy.impl.AppliesToImpl.class
org.opensaml.ws.wspolicy.impl.AppliesToUnmarshaller.class
org.opensaml.ws.wspolicy.impl.PolicyAttachmentBuilder.class
org.opensaml.ws.wspolicy.impl.PolicyReferenceBuilder.class
org.opensaml.ws.wspolicy.WSPolicyObjectBuilder.class
org.opensaml.ws.wspolicy.OptionalBearing.class
org.opensaml.ws.wspolicy.All.class
org.opensaml.ws.wspolicy.Policy.class
org.opensaml.ws.transport.OutTransport.class
org.opensaml.ws.transport.InTransport.class
org.opensaml.ws.transport.BaseTransport.class
org.opensaml.ws.transport.Transport.class
org.opensaml.ws.transport.TransportException.class
org.opensaml.ws.transport.OutputStreamOutTransportAdapter.class
org.opensaml.ws.transport.http.HttpServletResponseAdapter.class
org.opensaml.ws.transport.http.HTTPTransport$HTTP_VERSION.class
org.opensaml.ws.transport.http.HTTPOutTransport.class
org.opensaml.ws.transport.http.HTTPTransportUtils.class
org.opensaml.ws.transport.http.HttpServletRequestAdapter.class
org.opensaml.ws.transport.http.HTTPInTransport.class
org.opensaml.ws.transport.http.HTTPTransport.class
org.opensaml.ws.transport.InputStreamInTransportAdapter.class
org.opensaml.ws.wsaddressing.EndpointReference.class
org.opensaml.ws.wsaddressing.From.class
org.opensaml.ws.wsaddressing.ProblemHeaderQName.class
org.opensaml.ws.wsaddressing.WSAddressingConstants.class
org.opensaml.ws.wsaddressing.Action.class
org.opensaml.ws.wsaddressing.MessageID.class
org.opensaml.ws.wsaddressing.WSAddressingObject.class
org.opensaml.ws.wsaddressing.ProblemAction.class
org.opensaml.ws.wsaddressing.SoapAction.class
org.opensaml.ws.wsaddressing.WSAddressingObjectBuilder.class
org.opensaml.ws.wsaddressing.IsReferenceParameterBearing.class
org.opensaml.ws.wsaddressing.AttributedQName.class
org.opensaml.ws.wsaddressing.FaultTo.class
org.opensaml.ws.wsaddressing.AttributedURI.class
org.opensaml.ws.wsaddressing.ProblemIRI.class
org.opensaml.ws.wsaddressing.ReplyTo.class
org.opensaml.ws.wsaddressing.RelatesTo.class
org.opensaml.ws.wsaddressing.EndpointReferenceType.class
org.opensaml.ws.wsaddressing.impl.ProblemIRIBuilder.class
org.opensaml.ws.wsaddressing.impl.FaultToUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.SoapActionUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ReplyToMarshaller.class
org.opensaml.ws.wsaddressing.impl.ReferenceParametersUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ActionBuilder.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.RetryAfterUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.FromUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.AttributedQNameUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.FromImpl.class
org.opensaml.ws.wsaddressing.impl.AbstractWSAddressingObjectUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemIRIImpl.class
org.opensaml.ws.wsaddressing.impl.ActionImpl.class
org.opensaml.ws.wsaddressing.impl.MessageIDImpl.class
org.opensaml.ws.wsaddressing.impl.MessageIDMarshaller.class
org.opensaml.ws.wsaddressing.impl.AttributedQNameMarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemHeaderQNameUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemIRIUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ReferenceParametersMarshaller.class
org.opensaml.ws.wsaddressing.impl.FaultToBuilder.class
org.opensaml.ws.wsaddressing.impl.ReplyToBuilder.class
org.opensaml.ws.wsaddressing.impl.ActionMarshaller.class
org.opensaml.ws.wsaddressing.impl.FaultToImpl.class
org.opensaml.ws.wsaddressing.impl.AttributedQNameImpl.class
org.opensaml.ws.wsaddressing.impl.AddressUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemActionImpl.class
org.opensaml.ws.wsaddressing.impl.RetryAfterMarshaller.class
org.opensaml.ws.wsaddressing.impl.RelatesToImpl.class
org.opensaml.ws.wsaddressing.impl.ProblemActionMarshaller.class
org.opensaml.ws.wsaddressing.impl.AttributedUnsignedLongUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ToBuilder.class
org.opensaml.ws.wsaddressing.impl.ReferenceParametersImpl.class
org.opensaml.ws.wsaddressing.impl.ProblemHeaderQNameImpl.class
org.opensaml.ws.wsaddressing.impl.MessageIDBuilder.class
org.opensaml.ws.wsaddressing.impl.RelatesToMarshaller.class
org.opensaml.ws.wsaddressing.impl.MetadataImpl.class
org.opensaml.ws.wsaddressing.impl.ProblemIRIMarshaller.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceImpl.class
org.opensaml.ws.wsaddressing.impl.ReplyToImpl.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceTypeImpl.class
org.opensaml.ws.wsaddressing.impl.FromMarshaller.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceTypeUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceTypeMarshaller.class
org.opensaml.ws.wsaddressing.impl.MetadataMarshaller.class
org.opensaml.ws.wsaddressing.impl.RetryAfterBuilder.class
org.opensaml.ws.wsaddressing.impl.SoapActionBuilder.class
org.opensaml.ws.wsaddressing.impl.AbstractWSAddressingObjectBuilder.class
org.opensaml.ws.wsaddressing.impl.AttributedURIImpl.class
org.opensaml.ws.wsaddressing.impl.RelatesToUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemHeaderQNameBuilder.class
org.opensaml.ws.wsaddressing.impl.SoapActionImpl.class
org.opensaml.ws.wsaddressing.impl.ToImpl.class
org.opensaml.ws.wsaddressing.impl.AddressMarshaller.class
org.opensaml.ws.wsaddressing.impl.AddressBuilder.class
org.opensaml.ws.wsaddressing.impl.MessageIDUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.SoapActionMarshaller.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceMarshaller.class
org.opensaml.ws.wsaddressing.impl.ToUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.AttributedURIUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ReplyToUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.AbstractWSAddressingObject.class
org.opensaml.ws.wsaddressing.impl.FaultToMarshaller.class
org.opensaml.ws.wsaddressing.impl.MetadataBuilder.class
org.opensaml.ws.wsaddressing.impl.AttributedUnsignedLongMarshaller.class
org.opensaml.ws.wsaddressing.impl.ReferenceParametersBuilder.class
org.opensaml.ws.wsaddressing.impl.AttributedUnsignedLongImpl.class
org.opensaml.ws.wsaddressing.impl.AttributedURIMarshaller.class
org.opensaml.ws.wsaddressing.impl.EndpointReferenceBuilder.class
org.opensaml.ws.wsaddressing.impl.MetadataUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.RetryAfterImpl.class
org.opensaml.ws.wsaddressing.impl.ActionUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemActionUnmarshaller.class
org.opensaml.ws.wsaddressing.impl.AbstractWSAddressingObjectMarshaller.class
org.opensaml.ws.wsaddressing.impl.AddressImpl.class
org.opensaml.ws.wsaddressing.impl.ProblemActionBuilder.class
org.opensaml.ws.wsaddressing.impl.ToMarshaller.class
org.opensaml.ws.wsaddressing.impl.ProblemHeaderQNameMarshaller.class
org.opensaml.ws.wsaddressing.impl.RelatesToBuilder.class
org.opensaml.ws.wsaddressing.impl.FromBuilder.class
org.opensaml.ws.wsaddressing.util.WSAddressingHelper.class
org.opensaml.ws.wsaddressing.Metadata.class
org.opensaml.ws.wsaddressing.ReferenceParameters.class
org.opensaml.ws.wsaddressing.To.class
org.opensaml.ws.wsaddressing.RetryAfter.class
org.opensaml.ws.wsaddressing.Address.class
org.opensaml.ws.wsaddressing.AttributedUnsignedLong.class
org.opensaml.ws.wssecurity.Timestamp.class
org.opensaml.ws.wssecurity.Reference.class
org.opensaml.ws.wssecurity.Salt.class
org.opensaml.ws.wssecurity.Nonce.class
org.opensaml.ws.wssecurity.AttributedDateTime.class
org.opensaml.ws.wssecurity.Created.class
org.opensaml.ws.wssecurity.Security.class
org.opensaml.ws.wssecurity.EncodedString.class
org.opensaml.ws.wssecurity.KeyIdentifier.class
org.opensaml.ws.wssecurity.TokenTypeBearing.class
org.opensaml.ws.wssecurity.Password.class
org.opensaml.ws.wssecurity.AttributedURI.class
org.opensaml.ws.wssecurity.WSSecurityConstants.class
org.opensaml.ws.wssecurity.TransformationParameters.class
org.opensaml.ws.wssecurity.SecurityTokenReference.class
org.opensaml.ws.wssecurity.impl.ExpiresImpl.class
org.opensaml.ws.wssecurity.impl.EncryptedHeaderImpl.class
org.opensaml.ws.wssecurity.impl.TimestampUnmarshaller.class
org.opensaml.ws.wssecurity.impl.IterationImpl.class
org.opensaml.ws.wssecurity.impl.AttributedDateTimeUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SaltUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SecurityImpl.class
org.opensaml.ws.wssecurity.impl.UsernameTokenMarshaller.class
org.opensaml.ws.wssecurity.impl.AttributedStringMarshaller.class
org.opensaml.ws.wssecurity.impl.EncodedStringImpl.class
org.opensaml.ws.wssecurity.impl.TransformationParametersMarshaller.class
org.opensaml.ws.wssecurity.impl.IterationUnmarshaller.class
org.opensaml.ws.wssecurity.impl.AbstractWSSecurityObjectBuilder.class
org.opensaml.ws.wssecurity.impl.KeyIdentifierImpl.class
org.opensaml.ws.wssecurity.impl.CreatedBuilder.class
org.opensaml.ws.wssecurity.impl.PasswordImpl.class
org.opensaml.ws.wssecurity.impl.SaltBuilder.class
org.opensaml.ws.wssecurity.impl.SecurityUnmarshaller.class
org.opensaml.ws.wssecurity.impl.NonceMarshaller.class
org.opensaml.ws.wssecurity.impl.ReferenceImpl.class
org.opensaml.ws.wssecurity.impl.CreatedMarshaller.class
org.opensaml.ws.wssecurity.impl.SecurityTokenReferenceUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SecurityTokenReferenceImpl.class
org.opensaml.ws.wssecurity.impl.AttributedStringImpl.class
org.opensaml.ws.wssecurity.impl.KeyIdentifierUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SignatureConfirmationUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SignatureConfirmationImpl.class
org.opensaml.ws.wssecurity.impl.EncodedStringMarshaller.class
org.opensaml.ws.wssecurity.impl.ReferenceUnmarshaller.class
org.opensaml.ws.wssecurity.impl.BinarySecurityTokenUnmarshaller.class
org.opensaml.ws.wssecurity.impl.UsernameMarshaller.class
org.opensaml.ws.wssecurity.impl.EncodedStringUnmarshaller.class
org.opensaml.ws.wssecurity.impl.CreatedImpl.class
org.opensaml.ws.wssecurity.impl.EmbeddedUnmarshaller.class
org.opensaml.ws.wssecurity.impl.TimestampMarshaller.class
org.opensaml.ws.wssecurity.impl.TransformationParametersImpl.class
org.opensaml.ws.wssecurity.impl.TimestampImpl.class
org.opensaml.ws.wssecurity.impl.UsernameTokenBuilder.class
org.opensaml.ws.wssecurity.impl.EmbeddedImpl.class
org.opensaml.ws.wssecurity.impl.IterationMarshaller.class
org.opensaml.ws.wssecurity.impl.EncryptedHeaderUnmarshaller.class
org.opensaml.ws.wssecurity.impl.UsernameImpl.class
org.opensaml.ws.wssecurity.impl.PasswordUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SignatureConfirmationBuilder.class
org.opensaml.ws.wssecurity.impl.AttributedURIImpl.class
org.opensaml.ws.wssecurity.impl.ExpiresMarshaller.class
org.opensaml.ws.wssecurity.impl.SecurityTokenReferenceBuilder.class
org.opensaml.ws.wssecurity.impl.NonceBuilder.class
org.opensaml.ws.wssecurity.impl.KeyIdentifierBuilder.class
org.opensaml.ws.wssecurity.impl.SecurityMarshaller.class
org.opensaml.ws.wssecurity.impl.PasswordBuilder.class
org.opensaml.ws.wssecurity.impl.ReferenceMarshaller.class
org.opensaml.ws.wssecurity.impl.SaltImpl.class
org.opensaml.ws.wssecurity.impl.NonceUnmarshaller.class
org.opensaml.ws.wssecurity.impl.AbstractWSSecurityObject.class
org.opensaml.ws.wssecurity.impl.SecurityBuilder.class
org.opensaml.ws.wssecurity.impl.TransformationParametersBuilder.class
org.opensaml.ws.wssecurity.impl.ExpiresBuilder.class
org.opensaml.ws.wssecurity.impl.AttributedDateTimeImpl.class
org.opensaml.ws.wssecurity.impl.AttributedURIUnmarshaller.class
org.opensaml.ws.wssecurity.impl.UsernameBuilder.class
org.opensaml.ws.wssecurity.impl.UsernameTokenUnmarshaller.class
org.opensaml.ws.wssecurity.impl.ExpiresUnmarshaller.class
org.opensaml.ws.wssecurity.impl.SignatureConfirmationMarshaller.class
org.opensaml.ws.wssecurity.impl.KeyIdentifierMarshaller.class
org.opensaml.ws.wssecurity.impl.UsernameTokenImpl.class
org.opensaml.ws.wssecurity.impl.SecurityTokenReferenceMarshaller.class
org.opensaml.ws.wssecurity.impl.BinarySecurityTokenMarshaller.class
org.opensaml.ws.wssecurity.impl.EncryptedHeaderBuilder.class
org.opensaml.ws.wssecurity.impl.TimestampBuilder.class
org.opensaml.ws.wssecurity.impl.AbstractWSSecurityObjectMarshaller.class
org.opensaml.ws.wssecurity.impl.EmbeddedMarshaller.class
org.opensaml.ws.wssecurity.impl.AttributedURIMarshaller.class
org.opensaml.ws.wssecurity.impl.EmbeddedBuilder.class
org.opensaml.ws.wssecurity.impl.AttributedDateTimeMarshaller.class
org.opensaml.ws.wssecurity.impl.IterationBuilder.class
org.opensaml.ws.wssecurity.impl.AbstractWSSecurityObjectUnmarshaller.class
org.opensaml.ws.wssecurity.impl.BinarySecurityTokenImpl.class
org.opensaml.ws.wssecurity.impl.AttributedStringUnmarshaller.class
org.opensaml.ws.wssecurity.impl.EncryptedHeaderMarshaller.class
org.opensaml.ws.wssecurity.impl.CreatedUnmarshaller.class
org.opensaml.ws.wssecurity.impl.NonceImpl.class
org.opensaml.ws.wssecurity.impl.PasswordMarshaller.class
org.opensaml.ws.wssecurity.impl.UsernameUnmarshaller.class
org.opensaml.ws.wssecurity.impl.TransformationParametersUnmarshaller.class
org.opensaml.ws.wssecurity.impl.AttributedDataTimeImpl.class
org.opensaml.ws.wssecurity.impl.SaltMarshaller.class
org.opensaml.ws.wssecurity.impl.ReferenceBuilder.class
org.opensaml.ws.wssecurity.impl.BinarySecurityTokenBuilder.class
org.opensaml.ws.wssecurity.BinarySecurityToken.class
org.opensaml.ws.wssecurity.Iteration.class
org.opensaml.ws.wssecurity.Expires.class
org.opensaml.ws.wssecurity.util.WSSecurityHelper.class
org.opensaml.ws.wssecurity.IdBearing.class
org.opensaml.ws.wssecurity.UsageBearing.class
org.opensaml.ws.wssecurity.UsernameToken.class
org.opensaml.ws.wssecurity.WSSecurityObject.class
org.opensaml.ws.wssecurity.AttributedString.class
org.opensaml.ws.wssecurity.Username.class
org.opensaml.ws.wssecurity.WSSecurityObjectBuilder.class
org.opensaml.ws.wssecurity.Embedded.class
org.opensaml.ws.wssecurity.EncryptedHeader.class
org.opensaml.ws.wssecurity.SignatureConfirmation.class
org.opensaml.ws.Version.class
org.opensaml.ws.security.ServletRequestX509CredentialAdapter.class
org.opensaml.ws.security.provider.BaseTrustEngineRule.class
org.opensaml.ws.security.provider.StaticSecurityPolicyResolver.class
org.opensaml.ws.security.provider.HTTPRule.class
org.opensaml.ws.security.provider.CertificateNameOptions.class
org.opensaml.ws.security.provider.ClientCertAuthRule.class
org.opensaml.ws.security.provider.MandatoryAuthenticatedMessageRule.class
org.opensaml.ws.security.provider.MandatoryIssuerRule.class
org.opensaml.ws.security.provider.BasicSecurityPolicy.class
org.opensaml.ws.security.SecurityPolicyRule.class
org.opensaml.ws.security.SecurityPolicy.class
org.opensaml.ws.security.SecurityPolicyResolver.class
org.opensaml.ws.security.SecurityPolicyException.class
org.opensaml.ws.wstrust.ValidateTarget.class
org.opensaml.ws.wstrust.Lifetime.class
org.opensaml.ws.wstrust.KeyExchangeToken.class
org.opensaml.ws.wstrust.RequestedUnattachedReference.class
org.opensaml.ws.wstrust.Issuer.class
org.opensaml.ws.wstrust.WSTrustConstants.class
org.opensaml.ws.wstrust.KeyType.class
org.opensaml.ws.wstrust.TokenType.class
org.opensaml.ws.wstrust.Authenticator.class
org.opensaml.ws.wstrust.RequestedTokenCancelled.class
org.opensaml.ws.wstrust.WSTrustObjectBuilder.class
org.opensaml.ws.wstrust.ComputedKeyAlgorithm.class
org.opensaml.ws.wstrust.RequestedReferenceType.class
org.opensaml.ws.wstrust.KeyWrapAlgorithm.class
org.opensaml.ws.wstrust.BinaryExchange.class
org.opensaml.ws.wstrust.RequestedSecurityToken.class
org.opensaml.ws.wstrust.Participants.class
org.opensaml.ws.wstrust.EncryptionAlgorithm.class
org.opensaml.ws.wstrust.Encryption.class
org.opensaml.ws.wstrust.Entropy.class
org.opensaml.ws.wstrust.ComputedKey.class
org.opensaml.ws.wstrust.Forwardable.class
org.opensaml.ws.wstrust.SignatureAlgorithm.class
org.opensaml.ws.wstrust.SignWith.class
org.opensaml.ws.wstrust.Delegatable.class
org.opensaml.ws.wstrust.Status.class
org.opensaml.ws.wstrust.Challenge.class
org.opensaml.ws.wstrust.RequestSecurityTokenCollection.class
org.opensaml.ws.wstrust.BinarySecret.class
org.opensaml.ws.wstrust.RequestSecurityToken.class
org.opensaml.ws.wstrust.CanonicalizationAlgorithm.class
org.opensaml.ws.wstrust.RequestedAttachedReference.class
org.opensaml.ws.wstrust.Primary.class
org.opensaml.ws.wstrust.Code.class
org.opensaml.ws.wstrust.SignChallengeResponse.class
org.opensaml.ws.wstrust.RequestSecurityTokenResponse.class
org.opensaml.ws.wstrust.WSTrustObject.class
org.opensaml.ws.wstrust.SignChallenge.class
org.opensaml.ws.wstrust.CancelTarget.class
org.opensaml.ws.wstrust.RenewTarget.class
org.opensaml.ws.wstrust.EncryptWith.class
org.opensaml.ws.wstrust.impl.AuthenticationTypeUnmarshaller.class
org.opensaml.ws.wstrust.impl.CancelTargetMarshaller.class
org.opensaml.ws.wstrust.impl.DelegateToImpl.class
org.opensaml.ws.wstrust.impl.ChallengeBuilder.class
org.opensaml.ws.wstrust.impl.SignChallengeResponseUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestKETImpl.class
org.opensaml.ws.wstrust.impl.EncryptionMarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenCollectionUnmarshaller.class
org.opensaml.ws.wstrust.impl.ComputedKeyBuilder.class
org.opensaml.ws.wstrust.impl.EntropyBuilder.class
org.opensaml.ws.wstrust.impl.ComputedKeyImpl.class
org.opensaml.ws.wstrust.impl.StatusImpl.class
org.opensaml.ws.wstrust.impl.TokenTypeUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedSecurityTokenBuilder.class
org.opensaml.ws.wstrust.impl.ParticipantMarshaller.class
org.opensaml.ws.wstrust.impl.CombinedHashMarshaller.class
org.opensaml.ws.wstrust.impl.CanonicalizationAlgorithmBuilder.class
org.opensaml.ws.wstrust.impl.EntropyImpl.class
org.opensaml.ws.wstrust.impl.IssuedTokensImpl.class
org.opensaml.ws.wstrust.impl.ParticipantsMarshaller.class
org.opensaml.ws.wstrust.impl.OnBehalfOfBuilder.class
org.opensaml.ws.wstrust.impl.SignWithImpl.class
org.opensaml.ws.wstrust.impl.ClaimsBuilder.class
org.opensaml.ws.wstrust.impl.AbstractWSTrustObjectMarshaller.class
org.opensaml.ws.wstrust.impl.SignChallengeBuilder.class
org.opensaml.ws.wstrust.impl.BinaryExchangeMarshaller.class
org.opensaml.ws.wstrust.impl.UseKeyMarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenImpl.class
org.opensaml.ws.wstrust.impl.RenewingMarshaller.class
org.opensaml.ws.wstrust.impl.AuthenticatorImpl.class
org.opensaml.ws.wstrust.impl.AuthenticationTypeMarshaller.class
org.opensaml.ws.wstrust.impl.AllowPostdatingUnmarshaller.class
org.opensaml.ws.wstrust.impl.EncryptWithUnmarshaller.class
org.opensaml.ws.wstrust.impl.ComputedKeyAlgorithmMarshaller.class
org.opensaml.ws.wstrust.impl.UseKeyBuilder.class
org.opensaml.ws.wstrust.impl.ForwardableBuilder.class
org.opensaml.ws.wstrust.impl.ReasonUnmarshaller.class
org.opensaml.ws.wstrust.impl.ValidateTargetMarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseCollectionUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedSecurityTokenUnmarshaller.class
org.opensaml.ws.wstrust.impl.AbstractWSTrustObjectBuilder.class
org.opensaml.ws.wstrust.impl.RequestedTokenCancelledUnmarshaller.class
org.opensaml.ws.wstrust.impl.OnBehalfOfImpl.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenCollectionMarshaller.class
org.opensaml.ws.wstrust.impl.SignatureAlgorithmBuilder.class
org.opensaml.ws.wstrust.impl.PrimaryMarshaller.class
org.opensaml.ws.wstrust.impl.IssuerBuilder.class
org.opensaml.ws.wstrust.impl.EncryptionAlgorithmMarshaller.class
org.opensaml.ws.wstrust.impl.AllowPostdatingMarshaller.class
org.opensaml.ws.wstrust.impl.EncryptionBuilder.class
org.opensaml.ws.wstrust.impl.AuthenticatorUnmarshaller.class
org.opensaml.ws.wstrust.impl.CancelTargetBuilder.class
org.opensaml.ws.wstrust.impl.RequestedUnattachedReferenceImpl.class
org.opensaml.ws.wstrust.impl.KeySizeBuilder.class
org.opensaml.ws.wstrust.impl.RequestTypeBuilder.class
org.opensaml.ws.wstrust.impl.RequestedProofTokenImpl.class
org.opensaml.ws.wstrust.impl.BinarySecretImpl.class
org.opensaml.ws.wstrust.impl.KeyExchangeTokenBuilder.class
org.opensaml.ws.wstrust.impl.RequestedProofTokenBuilder.class
org.opensaml.ws.wstrust.impl.RequestKETMarshaller.class
org.opensaml.ws.wstrust.impl.CombinedHashImpl.class
org.opensaml.ws.wstrust.impl.RequestTypeImpl.class
org.opensaml.ws.wstrust.impl.OnBehalfOfMarshaller.class
org.opensaml.ws.wstrust.impl.ParticipantsBuilder.class
org.opensaml.ws.wstrust.impl.SignatureAlgorithmUnmarshaller.class
org.opensaml.ws.wstrust.impl.CanonicalizationAlgorithmUnmarshaller.class
org.opensaml.ws.wstrust.impl.ProofEncryptionImpl.class
org.opensaml.ws.wstrust.impl.EntropyMarshaller.class
org.opensaml.ws.wstrust.impl.ClaimsImpl.class
org.opensaml.ws.wstrust.impl.RequestTypeUnmarshaller.class
org.opensaml.ws.wstrust.impl.ComputedKeyUnmarshaller.class
org.opensaml.ws.wstrust.impl.SignWithMarshaller.class
org.opensaml.ws.wstrust.impl.RequestedAttachedReferenceImpl.class
org.opensaml.ws.wstrust.impl.KeyExchangeTokenImpl.class
org.opensaml.ws.wstrust.impl.KeyTypeUnmarshaller.class
org.opensaml.ws.wstrust.impl.StatusMarshaller.class
org.opensaml.ws.wstrust.impl.ForwardableImpl.class
org.opensaml.ws.wstrust.impl.PrimaryUnmarshaller.class
org.opensaml.ws.wstrust.impl.EncryptWithMarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenCollectionBuilder.class
org.opensaml.ws.wstrust.impl.ParticipantBuilder.class
org.opensaml.ws.wstrust.impl.KeyTypeMarshaller.class
org.opensaml.ws.wstrust.impl.KeyWrapAlgorithmUnmarshaller.class
org.opensaml.ws.wstrust.impl.LifetimeUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenUnmarshaller.class
org.opensaml.ws.wstrust.impl.RenewingUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseMarshaller.class
org.opensaml.ws.wstrust.impl.SignChallengeTypeMarshaller.class
org.opensaml.ws.wstrust.impl.UseKeyUnmarshaller.class
org.opensaml.ws.wstrust.impl.ComputedKeyAlgorithmUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedUnattachedReferenceBuilder.class
org.opensaml.ws.wstrust.impl.RequestedAttachedReferenceMarshaller.class
org.opensaml.ws.wstrust.impl.AuthenticationTypeImpl.class
org.opensaml.ws.wstrust.impl.CancelTargetUnmarshaller.class
org.opensaml.ws.wstrust.impl.SignatureAlgorithmMarshaller.class
org.opensaml.ws.wstrust.impl.IssuerMarshaller.class
org.opensaml.ws.wstrust.impl.EncryptionImpl.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseCollectionImpl.class
org.opensaml.ws.wstrust.impl.EncryptWithImpl.class
org.opensaml.ws.wstrust.impl.CanonicalizationAlgorithmMarshaller.class
org.opensaml.ws.wstrust.impl.OnBehalfOfUnmarshaller.class
org.opensaml.ws.wstrust.impl.UseKeyImpl.class
org.opensaml.ws.wstrust.impl.RequestedProofTokenMarshaller.class
org.opensaml.ws.wstrust.impl.CombinedHashBuilder.class
org.opensaml.ws.wstrust.impl.ValidateTargetUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenBuilder.class
org.opensaml.ws.wstrust.impl.SignChallengeUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedReferenceTypeMarshaller.class
org.opensaml.ws.wstrust.impl.DelegateToUnmarshaller.class
org.opensaml.ws.wstrust.impl.KeyWrapAlgorithmBuilder.class
org.opensaml.ws.wstrust.impl.AuthenticatorBuilder.class
org.opensaml.ws.wstrust.impl.ClaimsUnmarshaller.class
org.opensaml.ws.wstrust.impl.ReasonMarshaller.class
org.opensaml.ws.wstrust.impl.IssuerUnmarshaller.class
org.opensaml.ws.wstrust.impl.EncryptionUnmarshaller.class
org.opensaml.ws.wstrust.impl.PrimaryImpl.class
org.opensaml.ws.wstrust.impl.KeySizeUnmarshaller.class
org.opensaml.ws.wstrust.impl.IssuedTokensBuilder.class
org.opensaml.ws.wstrust.impl.CodeMarshaller.class
org.opensaml.ws.wstrust.impl.RequestedUnattachedReferenceUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseBuilder.class
org.opensaml.ws.wstrust.impl.EncryptionAlgorithmUnmarshaller.class
org.opensaml.ws.wstrust.impl.DelegateToBuilder.class
org.opensaml.ws.wstrust.impl.ReasonBuilder.class
org.opensaml.ws.wstrust.impl.RenewTargetBuilder.class
org.opensaml.ws.wstrust.impl.EncryptionAlgorithmImpl.class
org.opensaml.ws.wstrust.impl.ChallengeImpl.class
org.opensaml.ws.wstrust.impl.CanonicalizationAlgorithmImpl.class
org.opensaml.ws.wstrust.impl.DelegatableMarshaller.class
org.opensaml.ws.wstrust.impl.ProofEncryptionUnmarshaller.class
org.opensaml.ws.wstrust.impl.AuthenticationTypeBuilder.class
org.opensaml.ws.wstrust.impl.ParticipantImpl.class
org.opensaml.ws.wstrust.impl.CombinedHashUnmarshaller.class
org.opensaml.ws.wstrust.impl.ValidateTargetBuilder.class
org.opensaml.ws.wstrust.impl.SignChallengeMarshaller.class
org.opensaml.ws.wstrust.impl.TokenTypeMarshaller.class
org.opensaml.ws.wstrust.impl.DelegatableUnmarshaller.class
org.opensaml.ws.wstrust.impl.SignChallengeResponseImpl.class
org.opensaml.ws.wstrust.impl.BinaryExchangeUnmarshaller.class
org.opensaml.ws.wstrust.impl.RenewingBuilder.class
org.opensaml.ws.wstrust.impl.TokenTypeImpl.class
org.opensaml.ws.wstrust.impl.ClaimsMarshaller.class
org.opensaml.ws.wstrust.impl.KeyTypeBuilder.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenMarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseCollectionMarshaller.class
org.opensaml.ws.wstrust.impl.KeyTypeImpl.class
org.opensaml.ws.wstrust.impl.AbstractWSTrustObjectUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedTokenCancelledImpl.class
org.opensaml.ws.wstrust.impl.SignChallengeResponseBuilder.class
org.opensaml.ws.wstrust.impl.LifetimeMarshaller.class
org.opensaml.ws.wstrust.impl.SignChallengeTypeImpl.class
org.opensaml.ws.wstrust.impl.EncryptWithBuilder.class
org.opensaml.ws.wstrust.impl.BinaryExchangeImpl.class
org.opensaml.ws.wstrust.impl.ParticipantUnmarshaller.class
org.opensaml.ws.wstrust.impl.KeyWrapAlgorithmImpl.class
org.opensaml.ws.wstrust.impl.ComputedKeyAlgorithmBuilder.class
org.opensaml.ws.wstrust.impl.DelegateToMarshaller.class
org.opensaml.ws.wstrust.impl.RenewTargetImpl.class
org.opensaml.ws.wstrust.impl.RequestedTokenCancelledMarshaller.class
org.opensaml.ws.wstrust.impl.KeySizeMarshaller.class
org.opensaml.ws.wstrust.impl.RequestedSecurityTokenMarshaller.class
org.opensaml.ws.wstrust.impl.LifetimeBuilder.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenCollectionImpl.class
org.opensaml.ws.wstrust.impl.ForwardableUnmarshaller.class
org.opensaml.ws.wstrust.impl.AllowPostdatingBuilder.class
org.opensaml.ws.wstrust.impl.ParticipantTypeUnmarshaller.class
org.opensaml.ws.wstrust.impl.PrimaryBuilder.class
org.opensaml.ws.wstrust.impl.BinarySecretBuilder.class
org.opensaml.ws.wstrust.impl.RenewTargetMarshaller.class
org.opensaml.ws.wstrust.impl.CodeImpl.class
org.opensaml.ws.wstrust.impl.SignChallengeImpl.class
org.opensaml.ws.wstrust.impl.BinarySecretUnmarshaller.class
org.opensaml.ws.wstrust.impl.ForwardableMarshaller.class
org.opensaml.ws.wstrust.impl.ProofEncryptionMarshaller.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseImpl.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseUnmarshaller.class
org.opensaml.ws.wstrust.impl.ValidateTargetImpl.class
org.opensaml.ws.wstrust.impl.RenewTargetUnmarshaller.class
org.opensaml.ws.wstrust.impl.RenewingImpl.class
org.opensaml.ws.wstrust.impl.AllowPostdatingImpl.class
org.opensaml.ws.wstrust.impl.ChallengeUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedTokenCancelledBuilder.class
org.opensaml.ws.wstrust.impl.RequestedAttachedReferenceUnmarshaller.class
org.opensaml.ws.wstrust.impl.CodeUnmarshaller.class
org.opensaml.ws.wstrust.impl.EncryptionAlgorithmBuilder.class
org.opensaml.ws.wstrust.impl.ProofEncryptionBuilder.class
org.opensaml.ws.wstrust.impl.ParticipantTypeMarshaller.class
org.opensaml.ws.wstrust.impl.DelegatableBuilder.class
org.opensaml.ws.wstrust.impl.LifetimeImpl.class
org.opensaml.ws.wstrust.impl.ChallengeMarshaller.class
org.opensaml.ws.wstrust.impl.SignatureAlgorithmImpl.class
org.opensaml.ws.wstrust.impl.CancelTargetImpl.class
org.opensaml.ws.wstrust.impl.StatusBuilder.class
org.opensaml.ws.wstrust.impl.RequestSecurityTokenResponseCollectionBuilder.class
org.opensaml.ws.wstrust.impl.ReasonImpl.class
org.opensaml.ws.wstrust.impl.ParticipantsImpl.class
org.opensaml.ws.wstrust.impl.EntropyUnmarshaller.class
org.opensaml.ws.wstrust.impl.ComputedKeyMarshaller.class
org.opensaml.ws.wstrust.impl.ComputedKeyAlgorithmImpl.class
org.opensaml.ws.wstrust.impl.IssuerImpl.class
org.opensaml.ws.wstrust.impl.AuthenticatorMarshaller.class
org.opensaml.ws.wstrust.impl.KeyExchangeTokenUnmarshaller.class
org.opensaml.ws.wstrust.impl.RequestedReferenceTypeImpl.class
org.opensaml.ws.wstrust.impl.AbstractWSTrustObject.class
org.opensaml.ws.wstrust.impl.RequestedAttachedReferenceBuilder.class
org.opensaml.ws.wstrust.impl.BinaryExchangeBuilder.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
xmltooling-1.3.1.jar
/org.opensaml/xmltooling/1.3.1
查看xmltooling所有版本文件
commons-codec-1.3.jar
/commons-codec/commons-codec/1.3
查看commons-codec所有版本文件
commons-httpclient-3.1.jar
/commons-httpclient/commons-httpclient/3.1
查看commons-httpclient所有版本文件
servlet-api-2.4.jar
/javax.servlet/servlet-api/2.4
查看servlet-api所有版本文件
spring-core-2.0.8.jar
/org.springframework/spring-core/2.0.8
查看spring-core所有版本文件
spring-mock-2.0.8.jar
/org.springframework/spring-mock/2.0.8
查看spring-mock所有版本文件
xercesImpl-${xerces.version}.jar
/${xerces.groupId}/xercesImpl/${xerces.version}
查看xercesImpl所有版本文件
xml-resolver-1.2.jar
/xml-resolver/xml-resolver/1.2
查看xml-resolver所有版本文件
xalan-2.7.1.jar
/xalan/xalan/2.7.1
查看xalan所有版本文件
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
xmlunit-1.0.jar
/xmlunit/xmlunit/1.0
查看xmlunit所有版本文件
logback-classic-0.9.24.jar
/ch.qos.logback/logback-classic/0.9.24
查看logback-classic所有版本文件
|