Package org.jboss.identity.federation.ws.trust

Examples of org.jboss.identity.federation.ws.trust.LifetimeType


      // normalize the parameters (convert to UTC).
      this.created = factory.newXMLGregorianCalendar(created).normalize();
      this.expires = factory.newXMLGregorianCalendar(expires).normalize();

      // set the delegate fields.
      this.delegate = new LifetimeType();
      AttributedDateTime dateTime = new AttributedDateTime();
      dateTime.setValue(this.created.toXMLFormat());
      this.delegate.setCreated(dateTime);
      dateTime = new AttributedDateTime();
      dateTime.setValue(this.expires.toXMLFormat());
View Full Code Here


      // normalize the parameters (convert to UTC).
      this.created = factory.newXMLGregorianCalendar(created).normalize();
      this.expires = factory.newXMLGregorianCalendar(expires).normalize();

      // set the delegate fields.
      this.delegate = new LifetimeType();
      AttributedDateTime dateTime = new AttributedDateTime();
      dateTime.setValue(this.created.toXMLFormat());
      this.delegate.setCreated(dateTime);
      dateTime = new AttributedDateTime();
      dateTime.setValue(this.expires.toXMLFormat());
View Full Code Here

TOP

Related Classes of org.jboss.identity.federation.ws.trust.LifetimeType

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.