|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception javax.portlet.PortletException javax.portlet.UnavailableException
The portlet should throw the UnavailableException
when the portlet is either temporarily or permanently
unavailable to handle requests.
Field Summary | |
private boolean |
permanent
|
private static long |
serialVersionUID
The serialVersionUID |
private int |
unavailableSeconds
|
Fields inherited from class java.lang.Throwable |
|
Constructor Summary | |
UnavailableException(java.lang.String text)
Constructs a new exception with a descriptive message indicating that the portlet is permanently unavailable. |
|
UnavailableException(java.lang.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 | |
int |
getUnavailableSeconds()
Returns the time in seconds for which the portlet can be expected to be unavailable. |
boolean |
isPermanent()
Returns a boolean indicating whether the portlet is permanently unavailable. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
private static final long serialVersionUID
private boolean permanent
private int unavailableSeconds
Constructor Detail |
public UnavailableException(java.lang.String text)
text
- a String
specifying the descriptive messagepublic UnavailableException(java.lang.String text, int unavailableSeconds)
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 seconds
argument.
text
- a String
specifying 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 |
public int getUnavailableSeconds()
public boolean isPermanent()
boolean
indicating whether the portlet is permanently unavailable. If so, something is
wrong with the portlet, and the system administrator must take some corrective action.
true
if the portlet is permanently unavailable; false
if the portlet is
temporarily unavailable.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |