Source Code Cross Referenced for UnavailableException.java in  » Portal » gridsphere » javax » portlet » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » gridsphere » javax.portlet 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Copyright 2003 IBM Corporation and Sun Microsystems, Inc.
003:         * All rights reserved.
004:         * Use is subject to license terms.
005:         */package javax.portlet;
006:
007:        /**
008:         * The portlet should throw the <CODE>UnavailableException</CODE> when
009:         * the portlet is either temporarily or permanently unavailable to handle requests.
010:         */
011:
012:        public class UnavailableException extends PortletException {
013:
014:            private boolean permanent; // needs admin action?
015:            private int seconds; // unavailability estimate
016:
017:            /**
018:             * Constructs a new exception with a descriptive
019:             * message indicating that the portlet is permanently
020:             * unavailable.
021:             *
022:             * @param text a <code>String</code> specifying the
023:             *             descriptive message
024:             */
025:
026:            public UnavailableException(String text) {
027:                super (text);
028:
029:                permanent = true;
030:            }
031:
032:            /**
033:             * Constructs a new exception with a descriptive message
034:             * indicating that the portlet is temporarily unavailable
035:             * and giving an estimate of how long it will be unavailable.
036:             * <p/>
037:             * <p>In some cases, the portlet cannot make an estimate. For
038:             * example, the portlet might know that a server it needs is
039:             * not running, but it might not be able to report how long it will take
040:             * to be restored to functionality. This can be indicated with
041:             * a negative or zero value for the <code>seconds</code> argument.
042:             *
043:             * @param text    a <code>String</code> specifying the
044:             *                descriptive message. This message can be written
045:             *                to a log file or displayed for the user.
046:             * @param seconds an integer specifying the number of seconds
047:             *                for which the portlet expects to be unavailable; if
048:             *                this is zero or negative, it indicates that the portlet
049:             *                cannot make an estimate.
050:             */
051:
052:            public UnavailableException(String text, int seconds) {
053:                super (text);
054:
055:                if (seconds <= 0)
056:                    this .seconds = -1;
057:                else
058:                    this .seconds = seconds;
059:
060:                permanent = false;
061:            }
062:
063:            /**
064:             * Returns a <code>boolean</code> indicating
065:             * whether the portlet is permanently unavailable.
066:             * If so, something is wrong with the portlet, and the
067:             * system administrator must take some corrective action.
068:             *
069:             * @return		<code>true</code> if the portlet is
070:             * permanently unavailable; <code>false</code>
071:             * if the portlet is temporarily
072:             * unavailable.
073:             */
074:
075:            public boolean isPermanent() {
076:                return permanent;
077:            }
078:
079:            /**
080:             * Returns the time in seconds for which the portlet can be expected to
081:             * be unavailable.
082:             * <p/>
083:             * If the portlet is called again while it is still unavailable, it
084:             * indicates the same time estimate. No effort is
085:             * made to correct for the time elapsed since the exception was
086:             * first reported.
087:             * <p/>
088:             * If this method returns zero or a negative number, the portlet
089:             * is permanently unavailable or cannot provide an estimate of
090:             * how long it will be unavailable.
091:             *
092:             * @return		an integer specifying the number of seconds
093:             * the portlet will be temporarily unavailable,
094:             * or zero or a negative number if the portlet is permanently
095:             * unavailable or cannot make an estimate.
096:             */
097:
098:            public int getUnavailableSeconds() {
099:                return permanent ? -1 : seconds;
100:            }
101:
102:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.