| 1 |  |  package org.kuali.student.security.trust.service; | 
  | 2 |  |   | 
  | 3 |  |  import javax.jws.WebMethod; | 
  | 4 |  |  import javax.jws.WebParam; | 
  | 5 |  |  import javax.jws.WebResult; | 
  | 6 |  |  import javax.jws.WebService; | 
  | 7 |  |  import javax.jws.soap.SOAPBinding; | 
  | 8 |  |  import javax.xml.bind.annotation.XmlSeeAlso; | 
  | 9 |  |   | 
  | 10 |  |  import org.kuali.student.security.exceptions.KSSecurityException; | 
  | 11 |  |   | 
  | 12 |  |   | 
  | 13 |  |   | 
  | 14 |  |   | 
  | 15 |  |   | 
  | 16 |  |   | 
  | 17 |  |   | 
  | 18 |  |    | 
  | 19 |  |  @WebService(targetNamespace = "http://schemas.xmlsoap.org/ws/2005/02/trust/wsdl", name = "SecurityTokenService") | 
  | 20 |  |  @XmlSeeAlso({org.kuali.student.security.wssecurity.secext.dto.ObjectFactory.class,org.kuali.student.security.trust.dto.ObjectFactory.class,org.kuali.student.security.wssecurity.utility.dto.ObjectFactory.class,org.kuali.student.security.addressing.dto.ObjectFactory.class,org.kuali.student.security.policy.dto.ObjectFactory.class,org.kuali.student.security.xmldsig.dto.ObjectFactory.class}) | 
  | 21 |  |  @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) | 
  | 22 |  |  public interface SecurityTokenService { | 
  | 23 |  |   | 
  | 24 |  |      @WebResult(name = "RequestSecurityTokenResponseCollection", targetNamespace = "http://schemas.xmlsoap.org/ws/2005/02/trust", partName = "responseCollection") | 
  | 25 |  |      @WebMethod(operationName = "RequestSecurityToken2") | 
  | 26 |  |      public org.kuali.student.security.trust.dto.RequestSecurityTokenResponseCollectionType requestSecurityToken2( | 
  | 27 |  |          @WebParam(partName = "request", name = "RequestSecurityToken", targetNamespace = "http://schemas.xmlsoap.org/ws/2005/02/trust") | 
  | 28 |  |          org.kuali.student.security.trust.dto.RequestSecurityTokenType request | 
  | 29 |  |      ) throws KSSecurityException; | 
  | 30 |  |   | 
  | 31 |  |      @WebResult(name = "RequestSecurityTokenResponse", targetNamespace = "http://schemas.xmlsoap.org/ws/2005/02/trust", partName = "response") | 
  | 32 |  |      @WebMethod(operationName = "RequestSecurityToken") | 
  | 33 |  |      public org.kuali.student.security.trust.dto.RequestSecurityTokenResponseType requestSecurityToken( | 
  | 34 |  |          @WebParam(partName = "request", name = "RequestSecurityToken", targetNamespace = "http://schemas.xmlsoap.org/ws/2005/02/trust") | 
  | 35 |  |          org.kuali.student.security.trust.dto.RequestSecurityTokenType request | 
  | 36 |  |      ) throws KSSecurityException; | 
  | 37 |  |  } |