Java Doc for RegistryImpl.java in  » ESB » open-esb » com » sun » jbi » management » registry » xml » 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 » ESB » open esb » com.sun.jbi.management.registry.xml 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.jbi.management.registry.xml.RegistryImpl

RegistryImpl
public class RegistryImpl implements Registry(Code)
This is an implementation of the Registry which persists the information as XML.
author:
   Sun Microsystems, Inc.


Field Summary
final public static  StringJBI_REGISTRY_SCHEMA
    
final public static  StringJBI_REGISTRY_SCHEMA_DIR
    
final public static  StringREGISTRY_BKUP_FILE
    
final public static  StringREGISTRY_ERROR_FOLDER
    
final public static  StringREGISTRY_FILE
     The Registry folder and files.
final public static  StringREGISTRY_SYNC_FILE
    
final public static  StringREGISTRY_XML_PACKAGE
     The Registry XML Package.
final static  StringSTRING_TRANSLATOR_NAME
    
final public static  StringVALIDATE
     The Validation Property : value / { true / false }.

Constructor Summary
public  RegistryImpl(RegistrySpec spec)
     Creates a new instance of RegistryImpl.

Method Summary
public  voidcommit()
     Commit the changes to the registry.
public  voiddestroy()
    
public  ComponentQuerygetComponentQuery(String targetName)
     Get a ComponentQuery instance for a given target
Parameters:
  targetName - - name identifying the target.
public  ComponentQuerygetComponentQuery()
     Get the ComponentQuery specific to the target of the instance.
public  GenericQuerygetGenericQuery()
    
public  ManagementContextgetManagementContext()
    
 MarshallergetMarshaller()
    
public  StringgetProperty(String propName)
     Get a Registry Property.
public  StringgetRegistryBkupFilePath()
    
public  FilegetRegistryFile()
    
public  StringgetRegistryFilePath()
    
public  StringgetRegistryFolderPath()
    
 LockManagergetRegistryObjectLockManager()
    
public  RegistrySpecgetRegistrySpec()
     Get the Registry Specification.
 WritergetRegistryWriter()
    
public  RepositorygetRepository()
    
 LockManagergetSerializationLockManager()
    
public  ServiceAssemblyQuerygetServiceAssemblyQuery(String targetName)
     Get a ServiceAssemblyQuery instance for a given target
Parameters:
  targetName - - name identifying the target.
public  ServiceAssemblyQuerygetServiceAssemblyQuery()
     Get the ServiceAssemblyQuery specific to the target of the instance.
public  UpdatergetUpdater()
     Get the Updater instance to be used for updating the Registry.
public  voidreinitialize()
    
public  ByteArrayInputStreamsnapshot()
     Take a consistent snapshot of the registry.

Field Detail
JBI_REGISTRY_SCHEMA
final public static String JBI_REGISTRY_SCHEMA(Code)
registry schema file



JBI_REGISTRY_SCHEMA_DIR
final public static String JBI_REGISTRY_SCHEMA_DIR(Code)
registry schema subdir in JBI_HOME



REGISTRY_BKUP_FILE
final public static String REGISTRY_BKUP_FILE(Code)



REGISTRY_ERROR_FOLDER
final public static String REGISTRY_ERROR_FOLDER(Code)



REGISTRY_FILE
final public static String REGISTRY_FILE(Code)
The Registry folder and files.



REGISTRY_SYNC_FILE
final public static String REGISTRY_SYNC_FILE(Code)



REGISTRY_XML_PACKAGE
final public static String REGISTRY_XML_PACKAGE(Code)
The Registry XML Package.



STRING_TRANSLATOR_NAME
final static String STRING_TRANSLATOR_NAME(Code)



VALIDATE
final public static String VALIDATE(Code)
The Validation Property : value / { true / false }. Indicates whether the contents of the registry should be validated before serialization.




Constructor Detail
RegistryImpl
public RegistryImpl(RegistrySpec spec) throws RegistryException(Code)
Creates a new instance of RegistryImpl.
Parameters:
  spec - - XML Registry specification.
throws:
  RegistryException - if the JAXBContext cannot be initialized.




Method Detail
commit
public void commit() throws RegistryException(Code)
Commit the changes to the registry.
Parameters:
  validate - - if true indicates that the Registry Content isto be validated.



destroy
public void destroy()(Code)
Destroy the Registry



getComponentQuery
public ComponentQuery getComponentQuery(String targetName) throws RegistryException(Code)
Get a ComponentQuery instance for a given target
Parameters:
  targetName - - name identifying the target. an instance of ComponentQuery.
throws:
  RegistryException - on errors.



getComponentQuery
public ComponentQuery getComponentQuery() throws RegistryException(Code)
Get the ComponentQuery specific to the target of the instance. an instance of ComponentQuery.
throws:
  RegistryException - on errors.



getGenericQuery
public GenericQuery getGenericQuery() throws RegistryException(Code)
Get a Generic Query Instance an instance of GenericQuery.
throws:
  RegistryException - on errors.



getManagementContext
public ManagementContext getManagementContext()(Code)



getMarshaller
Marshaller getMarshaller()(Code)
the Marshaller.



getProperty
public String getProperty(String propName)(Code)
Get a Registry Property.



getRegistryBkupFilePath
public String getRegistryBkupFilePath()(Code)
the path to the Registry Backup File



getRegistryFile
public File getRegistryFile()(Code)
a the Registry File reference.



getRegistryFilePath
public String getRegistryFilePath()(Code)
the path to the Registry File



getRegistryFolderPath
public String getRegistryFolderPath()(Code)
the path to the Registry Folder



getRegistryObjectLockManager
LockManager getRegistryObjectLockManager()(Code)
the Read / Write Lock Manager used to synchronize access to the in-memoryregistry.



getRegistrySpec
public RegistrySpec getRegistrySpec()(Code)
Get the Registry Specification.



getRegistryWriter
Writer getRegistryWriter()(Code)
a Writer to the XML file.



getRepository
public Repository getRepository()(Code)



getSerializationLockManager
LockManager getSerializationLockManager()(Code)
the Read / Write Lock Manager used to synchronize access to the serializedregistry.



getServiceAssemblyQuery
public ServiceAssemblyQuery getServiceAssemblyQuery(String targetName) throws RegistryException(Code)
Get a ServiceAssemblyQuery instance for a given target
Parameters:
  targetName - - name identifying the target. an instance of ServiceAssemblyQuery.
throws:
  RegistryException - on errors.



getServiceAssemblyQuery
public ServiceAssemblyQuery getServiceAssemblyQuery() throws RegistryException(Code)
Get the ServiceAssemblyQuery specific to the target of the instance. an instance of ServiceAssemblyQuery.
throws:
  RegistryException - on errors.



getUpdater
public Updater getUpdater() throws RegistryException(Code)
Get the Updater instance to be used for updating the Registry. an instance of the Updater to be used to manipulate ( create / delete / modify ) contents of the registry.
throws:
  RegistryException - if problems are encountered in creatinga Updater.



reinitialize
public void reinitialize() throws RegistryException(Code)
Initialize the registry



snapshot
public ByteArrayInputStream snapshot() throws RegistryException(Code)
Take a consistent snapshot of the registry.



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.