Java Doc for Scope.java in  » J2EE » spring-framework-2.0.6 » org » springframework » beans » factory » config » 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.0.6 » org.springframework.beans.factory.config 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.beans.factory.config.Scope

All known Subclasses:   org.springframework.web.context.request.AbstractRequestAttributesScope,
Scope
public interface Scope (Code)
Strategy interface used by a ConfigurableBeanFactory , representing a target scope to hold bean instances in. This allows for extending the BeanFactory's standard scopes ConfigurableBeanFactory.SCOPE_SINGLETON "singleton" and ConfigurableBeanFactory.SCOPE_PROTOTYPE "prototype" with custom further scopes, registered for a ConfigurableBeanFactory.registerScope(StringScope) specific key .

org.springframework.context.ApplicationContext implementations such as a org.springframework.web.context.WebApplicationContext may register additional standard scopes specific to their environment, e.g. org.springframework.web.context.WebApplicationContext.SCOPE_REQUEST "request" and org.springframework.web.context.WebApplicationContext.SCOPE_SESSION "session" , based on this Scope SPI.

Even if its primary use is for extended scopes in a web environment, this SPI is completely generic: It provides the ability to get and put objects from any underlying storage mechanism, such as an HTTP session or a custom conversation mechanism. The name passed into this class's get and remove methods will identify the target object in the current scope.

Scope implementations are expected to be thread-safe. One Scope instance can be used with multiple bean factories at the same time, if desired (unless it explicitly wants to be aware of the containing BeanFactory), with any number of threads accessing the Scope concurrently from any number of factories.
author:
   Juergen Hoeller
author:
   Rob Harrop
since:
   2.0
See Also:   ConfigurableBeanFactory.registerScope
See Also:   CustomScopeConfigurer
See Also:   org.springframework.aop.scope.ScopedProxyFactoryBean
See Also:   org.springframework.web.context.request.RequestScope
See Also:   org.springframework.web.context.request.SessionScope





Method Summary
 Objectget(String name, ObjectFactory objectFactory)
     Return the object with the given name from the underlying scope, org.springframework.beans.factory.ObjectFactory.getObject creating it if not found in the underlying storage mechanism.
 StringgetConversationId()
     Return the conversation id for the current underlying scope, if any.

The exact meaning of the converation id depends on the underlying storage mechanism.

 voidregisterDestructionCallback(String name, Runnable callback)
     Register a callback to be executed on destruction of the specified object in the scope (or at destruction of the entire scope, if the scope does not destroy individual objects but rather only terminates in its entirety).

Note: This is an optional operation. This method will only be called for scoped beans with actual destruction configuration (DisposableBean, destroy-method, DestructionAwareBeanPostProcessor). Implementations should do their best to execute a given callback at the appropriate time.

 Objectremove(String name)
     Remove the object with the given name from the underlying scope.

Returns null if no object was found; otherwise returns the removed Object.

Note that an implementation should also remove a registered destruction callback for the specified object, if any.




Method Detail
get
Object get(String name, ObjectFactory objectFactory)(Code)
Return the object with the given name from the underlying scope, org.springframework.beans.factory.ObjectFactory.getObject creating it if not found in the underlying storage mechanism.

This is the central operation of a Scope, and the only operation that is absolutely required.
Parameters:
  name - the name of the object to retrieve
Parameters:
  objectFactory - the ObjectFactory to use to create the scopedobject if it is not present in the underlying storage mechanism the desired object (never null)




getConversationId
String getConversationId()(Code)
Return the conversation id for the current underlying scope, if any.

The exact meaning of the converation id depends on the underlying storage mechanism. In the case of session-scoped objects, the conversation id would typically be equal to (or derived from) the javax.servlet.http.HttpSession.getId session id ; in the case of a custom conversation that sits within the overall session, the specific id for the current conversation would be appropriate.

Note: This is an optional operation. It is perfectly valid to return null in an implementation of this method if the underlying storage mechanism has no obvious candidate for such an id. the conversation id, or null if there is noconversation id for the current scope




registerDestructionCallback
void registerDestructionCallback(String name, Runnable callback)(Code)
Register a callback to be executed on destruction of the specified object in the scope (or at destruction of the entire scope, if the scope does not destroy individual objects but rather only terminates in its entirety).

Note: This is an optional operation. This method will only be called for scoped beans with actual destruction configuration (DisposableBean, destroy-method, DestructionAwareBeanPostProcessor). Implementations should do their best to execute a given callback at the appropriate time. If such a callback is not supported by the underlying runtime environment at all, the callback must be ignored and a corresponding warning should be logged.

Note that 'destruction' refers to to automatic destruction of the object as part of the scope's own lifecycle, not to the individual scoped object having been explicitly removed by the application. If a scoped object gets removed via this facade's Scope.remove(String) method, any registered destruction callback should be removed as well, assuming that the removed object will be reused or manually destroyed.
Parameters:
  name - the name of the object to execute the destruction callback for
Parameters:
  callback - the destruction callback to be executed.Note that the passed-in Runnable will never throw an exception,so it can safely be executed without an enclosing try-catch block.Furthermore, the Runnable will usually be serializable, providedthat its target object is serializable as well.
See Also:   org.springframework.beans.factory.DisposableBean
See Also:   org.springframework.beans.factory.support.AbstractBeanDefinition.getDestroyMethodName
See Also:   DestructionAwareBeanPostProcessor




remove
Object remove(String name)(Code)
Remove the object with the given name from the underlying scope.

Returns null if no object was found; otherwise returns the removed Object.

Note that an implementation should also remove a registered destruction callback for the specified object, if any. It does, however, not need to execute a registered destruction callback in this case, since the object will be destroyed by the caller (if appropriate).

Note: This is an optional operation. Implementations may throw UnsupportedOperationException if they do not support explicitly removing an object.
Parameters:
  name - the name of the object to remove the removed object, or null if no object was present
See Also:   Scope.registerDestructionCallback




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.