org.springframework.web.portlet.handler
Class PortletRequestMethodNotSupportedException

java.lang.Object
  extended by PortletException
      extended by org.springframework.web.portlet.handler.PortletRequestMethodNotSupportedException

public class PortletRequestMethodNotSupportedException
extends PortletException

Exception thrown when a request handler does not support a specific request method.

Since:
3.0
Author:
Juergen Hoeller

Field Summary
private  java.lang.String method
           
private  java.lang.String[] supportedMethods
           
 
Constructor Summary
PortletRequestMethodNotSupportedException(java.lang.String method)
          Create a new PortletRequestMethodNotSupportedException.
PortletRequestMethodNotSupportedException(java.lang.String[] supportedMethods)
          Create a new PortletRequestMethodNotSupportedException.
PortletRequestMethodNotSupportedException(java.lang.String method, java.lang.String[] supportedMethods)
          Create a new PortletRequestMethodNotSupportedException.
 
Method Summary
 java.lang.String getMethod()
          Return the HTTP request method that caused the failure.
 java.lang.String[] getSupportedMethods()
          Return the actually supported HTTP methods, if known.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

method

private java.lang.String method

supportedMethods

private java.lang.String[] supportedMethods
Constructor Detail

PortletRequestMethodNotSupportedException

public PortletRequestMethodNotSupportedException(java.lang.String method)
Create a new PortletRequestMethodNotSupportedException.

Parameters:
method - the unsupported HTTP request method

PortletRequestMethodNotSupportedException

public PortletRequestMethodNotSupportedException(java.lang.String method,
                                                 java.lang.String[] supportedMethods)
Create a new PortletRequestMethodNotSupportedException.

Parameters:
method - the unsupported HTTP request method
supportedMethods - the actually supported HTTP methods

PortletRequestMethodNotSupportedException

public PortletRequestMethodNotSupportedException(java.lang.String[] supportedMethods)
Create a new PortletRequestMethodNotSupportedException.

Parameters:
method - the unsupported HTTP request method
supportedMethods - the actually supported HTTP methods
Method Detail

getMethod

public java.lang.String getMethod()
Return the HTTP request method that caused the failure.


getSupportedMethods

public java.lang.String[] getSupportedMethods()
Return the actually supported HTTP methods, if known.