package edu.internet2.middleware.shibboleth.idp.profile.saml2;
-import javax.servlet.ServletException;
+import org.opensaml.ws.transport.http.HTTPInTransport;
+import org.opensaml.ws.transport.http.HTTPOutTransport;
-import edu.internet2.middleware.shibboleth.common.profile.ProfileHandler;
-import edu.internet2.middleware.shibboleth.common.profile.ProfileRequest;
-import edu.internet2.middleware.shibboleth.common.profile.ProfileResponse;
+import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
/**
* SAML 2.0 Logout Request profile handler.
*/
-public class LogoutRequest implements ProfileHandler {
+public class LogoutRequest extends AbstractSAML2ProfileHandler {
/** {@inheritDoc} */
- public boolean processRequest(ProfileRequest request, ProfileResponse response) throws ServletException {
+ public void processRequest(HTTPInTransport inTransport, HTTPOutTransport outTransport) throws ProfileException {
// TODO Auto-generated method stub
- return false;
+
+ }
+
+ /** {@inheritDoc} */
+ public String getProfileId() {
+ // TODO Auto-generated method stub
+ return null;
}
}
\ No newline at end of file