Java Doc for AbstractSharedInterceptor.java in  » EJB-Server-JBoss-4.2.1 » jmx » org » jboss » mx » interceptor » 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 » EJB Server JBoss 4.2.1 » jmx » org.jboss.mx.interceptor 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jboss.mx.interceptor.AbstractInterceptor
      org.jboss.mx.interceptor.AbstractSharedInterceptor

All known Subclasses:   test.implementation.interceptor.support.MySharedInterceptor,
AbstractSharedInterceptor
abstract public class AbstractSharedInterceptor extends AbstractInterceptor implements SharedInterceptor(Code)
Base class for shared interceptors. This class provides some default method implementations for shared interceptors.
See Also:   org.jboss.mx.interceptor.SharedInterceptor
See Also:   org.jboss.mx.server.MBeanInvoker
author:
   Juha Lindfors.
version:
   $Revision: 57200 $


Field Summary
protected  ObjectNameobjectName
     Object name of this interceptor.
protected  MBeanServerserver
     MBean server reference for shared interceptors.

Constructor Summary
public  AbstractSharedInterceptor()
     Constructs a new shared interceptor instance.
public  AbstractSharedInterceptor(String name)
     Constructs a new shared interceptor instance with a given name.

Method Summary
protected  ObjectNamecreateObjectName()
     Creates an object name for this interceptor.
public  voiddestroy()
     This method is part of the interceptor MBean's registration lifecycle. It is called after the MBean has been unregistered from the server.
public  MBeanServergetMBeanServer()
    
public  ObjectNamegetObjectName()
    
public  voidinit()
     This method is part of the interceptor MBean's registration lifecycle. It is called before the MBean is registered to the server.
public  voidpostDeregister()
    
public  voidpostRegister(Boolean registrationSuccesful)
    
public  voidpreDeregister()
    
public  ObjectNamepreRegister(MBeanServer server, ObjectName oname)
    
public synchronized  ObjectNameregister(MBeanServer server)
     Registers the interceptor to the MBean server.
public synchronized  voidsetName(String name)
     Shared interceptors allows their name to be set only before they have been registered to the MBean server.
public  voidstart()
     This method is part of the interceptor MBean's registration lifecycle. It is called after the MBean is registered to the server.
public  voidstop()
     This method is part of the interceptor MBean's registration lifecycle. It is called before the MBean is unregistered from the server.
public  StringtoString()
     Returns a string representation of this interceptor instance.

Field Detail
objectName
protected ObjectName objectName(Code)
Object name of this interceptor. Shared interceptors must always contain a valid object name.



server
protected MBeanServer server(Code)
MBean server reference for shared interceptors.




Constructor Detail
AbstractSharedInterceptor
public AbstractSharedInterceptor()(Code)
Constructs a new shared interceptor instance. The interceptor is not automatically registered to the MBean server. Notice that the interceptor name must be set before the call to AbstractSharedInterceptor.register method. Shared interceptor names must be unique within the MBean server.



AbstractSharedInterceptor
public AbstractSharedInterceptor(String name)(Code)
Constructs a new shared interceptor instance with a given name. The interceptor is not automatically registered to the MBean server. Notice that the shared interceptor name must be unique name among all shared interceptors within the MBean server.
Parameters:
  name - name of this interceptor
throws:
  IllegalArgumentException - if name contains null reference




Method Detail
createObjectName
protected ObjectName createObjectName() throws MalformedObjectNameException(Code)
Creates an object name for this interceptor. The object name contains a type property and a name property. Property type always contains string 'Interceptor' as its value. Interceptor's name is used as a value for the name property. Therefore, an interceptor created with name 'Bart' will generate an object name matching to pattern:
org.jboss.mx.service.ServiceConstants.JBOSSMX_DOMAIN JBOSSMX_DOMAIN :type=Interceptor,name=Bart,*
 
generated object name for this interceptor
throws:
  MalformedObjectNameException - if the object name could not becreated



destroy
public void destroy()(Code)
This method is part of the interceptor MBean's registration lifecycle. It is called after the MBean has been unregistered from the server. Concrete interceptor implementations can override this method to provide cleanup code that should be executed once the interceptor is no longer registered to the MBean server.



getMBeanServer
public MBeanServer getMBeanServer()(Code)



getObjectName
public ObjectName getObjectName()(Code)



init
public void init() throws Exception(Code)
This method is part of the interceptor MBean's registration lifecycle. It is called before the MBean is registered to the server. Concrete interceptor implementations can override this method to provide initialization code that should be executed before the interceptor is registered.

Any exception that is propagated from this method to its caller will cancel the interceptor registration.
throws:
  Exception - if you want to cancel the interceptor registration




postDeregister
public void postDeregister()(Code)



postRegister
public void postRegister(Boolean registrationSuccesful)(Code)



preDeregister
public void preDeregister() throws Exception(Code)



preRegister
public ObjectName preRegister(MBeanServer server, ObjectName oname) throws Exception(Code)



register
public synchronized ObjectName register(MBeanServer server) throws InterceptorNameConflictException(Code)
Registers the interceptor to the MBean server.

The interceptor is registered under the org.jboss.mx.service.ServiceConstants.JBOSSMX_DOMAIN JBOSSMX_DOMAIN name. An interceptor's object name contains a type property and a name property. Property type always contains string 'Interceptor' as its value. Interceptor's name is used as a value for the name property. Therefore, an interceptor created with name 'Bart' can be found from the MBean server under object name:

org.jboss.mx.service.ServiceConstants.JBOSSMX_DOMAIN JBOSSMX_DOMAIN :type=Interceptor,name=Bart,*
 
If the log reference has not been set for this interceptor when it is registered, this implementation will register a log MBean via the system log manager under org.jboss.mx.service.ServiceConstants.JBOSSMX_DOMAIN JBOSSMX domain (see org.jboss.mx.logging.SystemLogManager SystemLogManager for details). The log instance's name will match the pattern:
 "JBossMX.Interceptor.<interceptor name>"
 

Parameters:
  server - MBean server where this shared interceptor is registered



setName
public synchronized void setName(String name)(Code)
Shared interceptors allows their name to be set only before they have been registered to the MBean server. After that the name is fixed and any attempt to invoke this method to change the name will yield a IllegalArgumentException.
Parameters:
  name - name of this shared interceptor
throws:
  IllegalArgumentException - if there was an attempt to change thename after the interceptor had been registered to the server



start
public void start()(Code)
This method is part of the interceptor MBean's registration lifecycle. It is called after the MBean is registered to the server. Concrete interceptor implementations can override this method to provide initialization code that should be executed once the MBean server and object name references for this interceptor have been resolved.



stop
public void stop() throws Exception(Code)
This method is part of the interceptor MBean's registration lifecycle. It is called before the MBean is unregistered from the server. Concrete interceptor implementations can override this method to provide cleanup code that should be executed before the interceptor is unregistered.

Any exception that is propagated from this method to its caller will cancel the interceptor unregistration.
throws:
  Exception - if you want to cancel the interceptor unregistration




toString
public String toString()(Code)
Returns a string representation of this interceptor instance. string representation



Fields inherited from org.jboss.mx.interceptor.AbstractInterceptor
protected boolean isShared(Code)(Java Doc)
protected Logger log(Code)(Java Doc)
protected String name(Code)(Java Doc)

Methods inherited from org.jboss.mx.interceptor.AbstractInterceptor
public void destroy()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public void init() throws Exception(Code)(Java Doc)
public Object invoke(Invocation invocation) throws Throwable(Code)(Java Doc)
public boolean isShared()(Code)(Java Doc)
public void setLogger(Logger log)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void start()(Code)(Java Doc)
public void stop() throws Exception(Code)(Java Doc)
public String toString()(Code)(Java Doc)

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.