Package javax.portlet
Class UnavailableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.portlet.PortletException
-
- javax.portlet.UnavailableException
-
- All Implemented Interfaces:
Serializable
public class UnavailableException extends PortletException
The portlet should throw theUnavailableExceptionwhen the portlet is either temporarily or permanently unavailable to handle requests.- Version:
- $Revision: 5441 $
- Author:
- Julien Viet
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnavailableException(String text)Constructs a new exception with a descriptive message indicating that the portlet is permanently unavailable.UnavailableException(String text, int unavailableSeconds)Constructs a new exception with a descriptive message indicating that the portlet is temporarily unavailable and giving an estimate of how long it will be unavailable.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetUnavailableSeconds()Returns the time in seconds for which the portlet can be expected to be unavailable.booleanisPermanent()Returns abooleanindicating whether the portlet is permanently unavailable.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnavailableException
public UnavailableException(String text)
Constructs a new exception with a descriptive message indicating that the portlet is permanently unavailable.- Parameters:
text- aStringspecifying the descriptive message
-
UnavailableException
public UnavailableException(String text, int unavailableSeconds)
Constructs a new exception with a descriptive message indicating that the portlet is temporarily unavailable and giving an estimate of how long it will be unavailable.In some cases, the portlet cannot make an estimate. For example, the portlet might know that a server it needs is not running, but it might not be able to report how long it will take to be restored to functionality. This can be indicated with a negative or zero value for the
secondsargument.- Parameters:
text- aStringspecifying the descriptive message. This message can be written to a log file or displayed for the user.unavailableSeconds- an integer specifying the number of seconds for which the portlet expects to be unavailable; if this is zero or negative, it indicates that the portlet cannot make an estimate.
-
-
Method Detail
-
getUnavailableSeconds
public int getUnavailableSeconds()
Returns the time in seconds for which the portlet can be expected to be unavailable. If the portlet is called again while it is still unavailable, it indicates the same time estimate. No effort is made to correct for the time elapsed since the exception was first reported. If this method returns zero or a negative number, the portlet is permanently unavailable or cannot provide an estimate of how long it will be unavailable.- Returns:
- an integer specifying the number of seconds the portlet will be temporarily unavailable, or zero or a negative number if the portlet is permanently unavailable or cannot make an estimate.
-
isPermanent
public boolean isPermanent()
Returns abooleanindicating whether the portlet is permanently unavailable. If so, something is wrong with the portlet, and the system administrator must take some corrective action.- Returns:
trueif the portlet is permanently unavailable;falseif the portlet is temporarily unavailable.
-
-