Source Code Cross Referenced for ObjectRetrievalFailureException.java in  » J2EE » spring-framework-2.5 » org » springframework » orm » 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 » J2EE » spring framework 2.5 » org.springframework.orm 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2002-2006 the original author or authors.
003:         *
004:         * Licensed under the Apache License, Version 2.0 (the "License");
005:         * you may not use this file except in compliance with the License.
006:         * You may obtain a copy of the License at
007:         *
008:         *      http://www.apache.org/licenses/LICENSE-2.0
009:         *
010:         * Unless required by applicable law or agreed to in writing, software
011:         * distributed under the License is distributed on an "AS IS" BASIS,
012:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013:         * See the License for the specific language governing permissions and
014:         * limitations under the License.
015:         */
016:
017:        package org.springframework.orm;
018:
019:        import org.springframework.dao.DataRetrievalFailureException;
020:
021:        /**
022:         * Exception thrown if a mapped object could not be retrieved via its identifier.
023:         * Provides information about the persistent class and the identifier.
024:         *
025:         * @author Juergen Hoeller
026:         * @since 13.10.2003
027:         */
028:        public class ObjectRetrievalFailureException extends
029:                DataRetrievalFailureException {
030:
031:            private Object persistentClass;
032:
033:            private Object identifier;
034:
035:            /**
036:             * Create a general ObjectRetrievalFailureException with the given message,
037:             * without any information on the affected object.
038:             * @param msg the detail message
039:             * @param cause the source exception
040:             */
041:            public ObjectRetrievalFailureException(String msg, Throwable cause) {
042:                super (msg, cause);
043:            }
044:
045:            /**
046:             * Create a new ObjectRetrievalFailureException for the given object,
047:             * with the default "not found" message.
048:             * @param persistentClass the persistent class
049:             * @param identifier the ID of the object that should have been retrieved
050:             */
051:            public ObjectRetrievalFailureException(Class persistentClass,
052:                    Object identifier) {
053:                this (persistentClass, identifier, "Object of class ["
054:                        + persistentClass.getName() + "] with identifier ["
055:                        + identifier + "]: not found", null);
056:            }
057:
058:            /**
059:             * Create a new ObjectRetrievalFailureException for the given object,
060:             * with the given explicit message and exception.
061:             * @param persistentClass the persistent class
062:             * @param identifier the ID of the object that should have been retrieved
063:             * @param msg the detail message
064:             * @param cause the source exception
065:             */
066:            public ObjectRetrievalFailureException(Class persistentClass,
067:                    Object identifier, String msg, Throwable cause) {
068:
069:                super (msg, cause);
070:                this .persistentClass = persistentClass;
071:                this .identifier = identifier;
072:            }
073:
074:            /**
075:             * Create a new ObjectRetrievalFailureException for the given object,
076:             * with the default "not found" message.
077:             * @param persistentClassName the name of the persistent class
078:             * @param identifier the ID of the object that should have been retrieved
079:             */
080:            public ObjectRetrievalFailureException(String persistentClassName,
081:                    Object identifier) {
082:                this (persistentClassName, identifier, "Object of class ["
083:                        + persistentClassName + "] with identifier ["
084:                        + identifier + "]: not found", null);
085:            }
086:
087:            /**
088:             * Create a new ObjectRetrievalFailureException for the given object,
089:             * with the given explicit message and exception.
090:             * @param persistentClassName the name of the persistent class
091:             * @param identifier the ID of the object that should have been retrieved
092:             * @param msg the detail message
093:             * @param cause the source exception
094:             */
095:            public ObjectRetrievalFailureException(String persistentClassName,
096:                    Object identifier, String msg, Throwable cause) {
097:
098:                super (msg, cause);
099:                this .persistentClass = persistentClassName;
100:                this .identifier = identifier;
101:            }
102:
103:            /**
104:             * Return the persistent class of the object that was not found.
105:             * If no Class was specified, this method returns null.
106:             */
107:            public Class getPersistentClass() {
108:                return (this .persistentClass instanceof  Class ? (Class) this .persistentClass
109:                        : null);
110:            }
111:
112:            /**
113:             * Return the name of the persistent class of the object that was not found.
114:             * Will work for both Class objects and String names.
115:             */
116:            public String getPersistentClassName() {
117:                if (this .persistentClass instanceof  Class) {
118:                    return ((Class) this .persistentClass).getName();
119:                }
120:                return (this .persistentClass != null ? this .persistentClass
121:                        .toString() : null);
122:            }
123:
124:            /**
125:             * Return the identifier of the object that was not found.
126:             */
127:            public Object getIdentifier() {
128:                return identifier;
129:            }
130:
131:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.