Java Doc for ResinModule.java in  » EJB-Server-resin-3.1.5 » resin » com » caucho » quercus » lib » 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 resin 3.1.5 » resin » com.caucho.quercus.lib 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.caucho.quercus.lib.ResinModule

ResinModule
public class ResinModule extends AbstractQuercusModule (Code)


Field Summary
final public static  intXA_STATUS_ACTIVE
    
final public static  intXA_STATUS_COMMITTED
    
final public static  intXA_STATUS_COMMITTING
    
final public static  intXA_STATUS_MARKED_ROLLBACK
    
final public static  intXA_STATUS_NO_TRANSACTION
    
final public static  intXA_STATUS_PREPARED
    
final public static  intXA_STATUS_PREPARING
    
final public static  intXA_STATUS_ROLLEDBACK
    
final public static  intXA_STATUS_ROLLING_BACK
    
final public static  intXA_STATUS_UNKNOWN
    


Method Summary
public static  Objectjava_bean(String name)
     Returns the matchding webbeans.
public static  Objectjndi_lookup(String name)
     Perform a jndi lookup to retrieve an object.
Parameters:
  name - a fully qualified name "java:comp/env/foo",or a short-form "foo".
public  ArrayValuembean_explode(String name)
     Explode an object name into an array with key value pairs that correspond to the keys and values in the object name.
public static  Stringmbean_implode(ArrayValue exploded)
     Implode an array into an object name.
public static  Valueresin_var_dump(Env env, Value v)
    
public static  Stringresin_version()
     Returns the version of the Resin server software.
public static  Valuestring_to_binary(Env env, String string, String encoding)
     Converts a string into its binary representation, according to the given encoding, if given, or the script encoding if not given.
public static  booleanxa_begin(Env env)
     Starts a new distributed transaction.
public static  booleanxa_commit(Env env)
     Commits the current transaction.
public static  booleanxa_rollback(Env env)
     Complets the current transaction by rolling it back.
public static  booleanxa_rollback_only(Env env)
     Sets the rollback_only status for the current transaction.
public static  booleanxa_set_timeout(Env env, int timeoutSeconds)
     Sets the timeout for the current distribued transaction.
public static  intxa_status()
     Returns the JTA status code for the current transation.

Field Detail
XA_STATUS_ACTIVE
final public static int XA_STATUS_ACTIVE(Code)



XA_STATUS_COMMITTED
final public static int XA_STATUS_COMMITTED(Code)



XA_STATUS_COMMITTING
final public static int XA_STATUS_COMMITTING(Code)



XA_STATUS_MARKED_ROLLBACK
final public static int XA_STATUS_MARKED_ROLLBACK(Code)



XA_STATUS_NO_TRANSACTION
final public static int XA_STATUS_NO_TRANSACTION(Code)



XA_STATUS_PREPARED
final public static int XA_STATUS_PREPARED(Code)



XA_STATUS_PREPARING
final public static int XA_STATUS_PREPARING(Code)



XA_STATUS_ROLLEDBACK
final public static int XA_STATUS_ROLLEDBACK(Code)



XA_STATUS_ROLLING_BACK
final public static int XA_STATUS_ROLLING_BACK(Code)



XA_STATUS_UNKNOWN
final public static int XA_STATUS_UNKNOWN(Code)





Method Detail
java_bean
public static Object java_bean(String name)(Code)
Returns the matchding webbeans.



jndi_lookup
public static Object jndi_lookup(String name)(Code)
Perform a jndi lookup to retrieve an object.
Parameters:
  name - a fully qualified name "java:comp/env/foo",or a short-form "foo". the object, or null if it is not found.



mbean_explode
public ArrayValue mbean_explode(String name)(Code)
Explode an object name into an array with key value pairs that correspond to the keys and values in the object name. The domain is stored in the returned array under the key named ":domain:".



mbean_implode
public static String mbean_implode(ArrayValue exploded)(Code)
Implode an array into an object name. The array contains key value pairs that become key vlaue pairs in the object name. The key with the name ":domain:" becomes the domain of the object name.



resin_var_dump
public static Value resin_var_dump(Env env, Value v)(Code)
Prints a debug version of the variable
Parameters:
  env - the quercus calling environment
Parameters:
  v - the variable to print the escaped stringPhp



resin_version
public static String resin_version()(Code)
Returns the version of the Resin server software.



string_to_binary
public static Value string_to_binary(Env env, String string, String encoding)(Code)
Converts a string into its binary representation, according to the given encoding, if given, or the script encoding if not given.



xa_begin
public static boolean xa_begin(Env env)(Code)
Starts a new distributed transaction.



xa_commit
public static boolean xa_commit(Env env)(Code)
Commits the current transaction.



xa_rollback
public static boolean xa_rollback(Env env)(Code)
Complets the current transaction by rolling it back.



xa_rollback_only
public static boolean xa_rollback_only(Env env)(Code)
Sets the rollback_only status for the current transaction.



xa_set_timeout
public static boolean xa_set_timeout(Env env, int timeoutSeconds)(Code)
Sets the timeout for the current distribued transaction.



xa_status
public static int xa_status()(Code)
Returns the JTA status code for the current transation.



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