Java Doc for SystemDefinitionContainer.java in  » Net » Terracotta » com » tc » aspectwerkz » definition » 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 » Net » Terracotta » com.tc.aspectwerkz.definition 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.tc.aspectwerkz.definition.SystemDefinitionContainer

SystemDefinitionContainer
public class SystemDefinitionContainer (Code)
The SystemDefintionContainer maintains all the definition and is aware of the classloader hierarchy.

A ThreadLocal structure is used during weaving to store current classloader definition hierarchy.

Due to getResources() API, we maintain a perClassLoader loaded resource list so that it contains only resource defined within the classloader and not its parent.
author:
   Alexandre Vasseur
author:
   Jonas Bonér



Field Summary
final public static  StringAOP_META_INF_XML_FILE
     The AOP deployment descriptor for any deployed unit Note: Tomcat 5 does not handles war/META-INF.
final public static  StringAOP_WEB_INF_XML_FILE
     The AOP deployment descriptor for any deployed unit in a webapp.
final public static  StringDEFAULT_DEFINITION_FILE_NAME
     The default name for the definition file.
final public static  StringDEFAULT_SYSTEM
     The UUID of the single AspectWerkz system if only one definition is used.
final public static  StringDEFINITION_FILE
     The path to the definition file.
final public static  StringURL_JVM_OPTION_SYSTEM
    
final public static  StringWEB_WEB_INF_XML_FILE
    
final public static  Maps_classLoaderDefinitionLocations
    
public static  Maps_classLoaderHierarchicalSystemDefinitions
    
final public static  Maps_classLoaderSystemDefinitions
     Map of SystemDefinition[List] per ClassLoader.


Method Summary
public static  voiddeployDefinitions(ClassLoader loader, Set definitions)
     Hotdeploy a list of SystemDefintions as defined at the level of the given ClassLoader

Note: this is used for Offline mode.

public static  voiddisableSystemWideDefinition()
     Turns on the option to avoid -Daspectwerkz.definition.file handling.
public static  SetgetAllDefinitionsFor(ClassLoader loader)
     Return the list of SystemDefinitions defined at the given ClassLoader level.
public static  SetgetDefaultDefinition(ClassLoader loader)
     Returns the default defintion.
public static  SystemDefinitiongetDefinitionFor(ClassLoader loader, String uuid)
     Lookup for a given SystemDefinition by uuid within a given ClassLoader.
public static  SetgetDefinitionsFor(ClassLoader loader)
     Return the list of SystemDefinitions visible at the given ClassLoader level.
public static  SystemDefinitiongetVirtualDefinitionFor(ClassLoader loader)
     Returns the virtual system for the class loader specified.

There is ONE and ONLY ONE virtual system per classloader ie several per classloader hierachy.

public static  StringgetVirtualDefinitionUuidFor(ClassLoader loader)
    
public static  booleanisChildOf(ClassLoader loader, ClassLoader parentLoader)
    
public static  voidprintDeploymentInfoFor(ClassLoader loader)
    

Field Detail
AOP_META_INF_XML_FILE
final public static String AOP_META_INF_XML_FILE(Code)
The AOP deployment descriptor for any deployed unit Note: Tomcat 5 does not handles war/META-INF.



AOP_WEB_INF_XML_FILE
final public static String AOP_WEB_INF_XML_FILE(Code)
The AOP deployment descriptor for any deployed unit in a webapp.



DEFAULT_DEFINITION_FILE_NAME
final public static String DEFAULT_DEFINITION_FILE_NAME(Code)
The default name for the definition file.



DEFAULT_SYSTEM
final public static String DEFAULT_SYSTEM(Code)
The UUID of the single AspectWerkz system if only one definition is used.



DEFINITION_FILE
final public static String DEFINITION_FILE(Code)
The path to the definition file.



URL_JVM_OPTION_SYSTEM
final public static String URL_JVM_OPTION_SYSTEM(Code)
Default location for default AspectWerkz definition file, JVM wide



WEB_WEB_INF_XML_FILE
final public static String WEB_WEB_INF_XML_FILE(Code)



s_classLoaderDefinitionLocations
final public static Map s_classLoaderDefinitionLocations(Code)
Map of SystemDefinition location (as URL[List]) per ClassLoader NOTE: null key is supported



s_classLoaderHierarchicalSystemDefinitions
public static Map s_classLoaderHierarchicalSystemDefinitions(Code)
Map of SystemDefinition[List] per ClassLoader, with the hierarchy structure NOTE: null key is supported



s_classLoaderSystemDefinitions
final public static Map s_classLoaderSystemDefinitions(Code)
Map of SystemDefinition[List] per ClassLoader. NOTE: null key is supported





Method Detail
deployDefinitions
public static void deployDefinitions(ClassLoader loader, Set definitions)(Code)
Hotdeploy a list of SystemDefintions as defined at the level of the given ClassLoader

Note: this is used for Offline mode.
Parameters:
  loader - ClassLoader
Parameters:
  definitions - SystemDefinitions list




disableSystemWideDefinition
public static void disableSystemWideDefinition()(Code)
Turns on the option to avoid -Daspectwerkz.definition.file handling.



getAllDefinitionsFor
public static Set getAllDefinitionsFor(ClassLoader loader)(Code)
Return the list of SystemDefinitions defined at the given ClassLoader level.

It does NOT handle the ClassLoader hierarchy.
Parameters:
  loader - SystemDefinitions list




getDefaultDefinition
public static Set getDefaultDefinition(ClassLoader loader)(Code)
Returns the default defintion.
Parameters:
  loader - the default defintion



getDefinitionFor
public static SystemDefinition getDefinitionFor(ClassLoader loader, String uuid)(Code)
Lookup for a given SystemDefinition by uuid within a given ClassLoader.

The lookup does go thru the ClassLoader hierarchy
Parameters:
  loader - ClassLoader
Parameters:
  uuid - system uuid SystemDefinition or null if no such defined definition




getDefinitionsFor
public static Set getDefinitionsFor(ClassLoader loader)(Code)
Return the list of SystemDefinitions visible at the given ClassLoader level.

It does handle the ClassLoader hierarchy.
Parameters:
  loader - SystemDefinitions list




getVirtualDefinitionFor
public static SystemDefinition getVirtualDefinitionFor(ClassLoader loader)(Code)
Returns the virtual system for the class loader specified.

There is ONE and ONLY ONE virtual system per classloader ie several per classloader hierachy. This definition hosts hotdeployed aspects. This method returns the one corresponding to the given classloader only.
Parameters:
  loader - the class loader the virtual system




getVirtualDefinitionUuidFor
public static String getVirtualDefinitionUuidFor(ClassLoader loader)(Code)
Returns the uuid for the virtual system definition for the given classloader
Parameters:
  loader - uuit



isChildOf
public static boolean isChildOf(ClassLoader loader, ClassLoader parentLoader)(Code)
Returns true if the given classloader is a child of the given parent classloader
Parameters:
  loader -
Parameters:
  parentLoader - bool



printDeploymentInfoFor
public static void printDeploymentInfoFor(ClassLoader loader)(Code)
Pretty printDeploymentInfo a classloader
Parameters:
  loader -



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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