Java Doc for RPCMessageImpl.java in  » Net » Coadunation_1.0.1 » com » rift » coad » daemon » messageservice » message » 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 » Coadunation_1.0.1 » com.rift.coad.daemon.messageservice.message 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.rift.coad.daemon.messageservice.message.MessageImpl
      com.rift.coad.daemon.messageservice.message.RPCMessageImpl

RPCMessageImpl
public class RPCMessageImpl extends MessageImpl implements RPCMessage(Code)
The implementation of the RPC message object.
author:
   Brett Chaldecott



Constructor Summary
public  RPCMessageImpl(String messageId, String user, String sessionId, List principals, int status)
    
public  RPCMessageImpl(String messageId, Date created, int retries, Date processedDate, String user, String sessionId, List principals, String from, int messageType, int status)
    

Method Summary
public  voidclearBody()
     This method clears the body of the rpc message.
public  voiddefineMethod(Class returnType, String name, Class[] types)
    
public  booleangeneratedException()
     This method returns true if an exception was thrown.
public  Class[]getArgumentTypes()
     This method returns the argument types for this method.
public  Object[]getArguments()
     This method returns the arguments for a method. The list of arguments.
public  StringgetMethodBodyXML()
     This method returns the XML body of the message.
public  StringgetMethodName()
     This method returns the name of the method being wrapped.
public  ObjectgetResult()
     This method returns the result of the RPC call.
public  byte[]getResultBytes()
     This method returns the result of the RPC call.
public  ObjectgetReturnType()
     This method retrieves the return type of a method.
public  ThrowablegetThrowable()
     This method returns the exception that got thrown while processing this RPC message.
public  byte[]getThrowableBytes()
     This method returns the exception that got thrown while processing this RPC message.
public  voidsetArguments(Object[] args)
     This method sets the arguments for this message.
public  voidsetMethodBodyXML(String xml)
     This method sets the XML body for the message.
public  voidsetResult(Object result)
     This method is responsible for setting the result of the return.
public  voidsetResultBytes(byte[] result)
     This method is responsible for setting the result of the return.
public  voidsetThrowable(Throwable throwable)
     This method returns the exception that got thrown while processing this RPC message.
public  voidsetThrowableBytes(byte[] exception)
     This method sets the throwable bytes of the exception.


Constructor Detail
RPCMessageImpl
public RPCMessageImpl(String messageId, String user, String sessionId, List principals, int status)(Code)
Creates a new instance of RPCMessageImpl
Parameters:
  messageId - The unique identifier for this message.
Parameters:
  user - The user of this message.
Parameters:
  sessionId - The id of this user session.
Parameters:
  principals - The list of principals assigned to this message.
Parameters:
  status - The status of this message.



RPCMessageImpl
public RPCMessageImpl(String messageId, Date created, int retries, Date processedDate, String user, String sessionId, List principals, String from, int messageType, int status)(Code)
Creates a new instance of RPCMessageImpl
Parameters:
  messageId - The id of the message that was created.
Parameters:
  create - The created time stamp.
Parameters:
  retries - The number of retries of this message.
Parameters:
  processedDate - The last time this message was processed.
Parameters:
  user - The name of the user.
Parameters:
  sessionId - The id of this user session.
Parameters:
  principals - The list of principals.
Parameters:
  from - The from address of the message.
Parameters:
  messageType - The type of message being used.
Parameters:
  status - The status of this message.




Method Detail
clearBody
public void clearBody() throws MessageServiceException(Code)
This method clears the body of the rpc message.
exception:
  MessageServiceException -



defineMethod
public void defineMethod(Class returnType, String name, Class[] types) throws MessageServiceException(Code)
This method sets the method information for
Parameters:
  returnType - The return type for this message.
Parameters:
  name - The name of this method.
Parameters:
  types - The types that are arguments to this method.
exception:
  MessageServiceException -



generatedException
public boolean generatedException() throws MessageServiceException(Code)
This method returns true if an exception was thrown. TRUE if and exception was generated, FALSE if not.
exception:
  MessageServiceException -



getArgumentTypes
public Class[] getArgumentTypes() throws MessageServiceException(Code)
This method returns the argument types for this method. The list of arguments.
exception:
  MessageServiceException -



getArguments
public Object[] getArguments() throws MessageServiceException(Code)
This method returns the arguments for a method. The list of arguments. MessageServiceException.



getMethodBodyXML
public String getMethodBodyXML() throws MessageServiceException(Code)
This method returns the XML body of the message. The string containing the formatted xml for the request.
exception:
  MessageServiceException -



getMethodName
public String getMethodName() throws MessageServiceException(Code)
This method returns the name of the method being wrapped. The string containing the method name.
exception:
  MessageServiceException -



getResult
public Object getResult() throws MessageServiceException(Code)
This method returns the result of the RPC call. The object returns as a result of the asynchronis call.
exception:
  MessageServiceException -



getResultBytes
public byte[] getResultBytes() throws MessageServiceException(Code)
This method returns the result of the RPC call. The object returns as a result of the asynchronis call.
exception:
  MessageServiceException -



getReturnType
public Object getReturnType() throws MessageServiceException(Code)
This method retrieves the return type of a method. The object containing the return type information.
exception:
  MessageServiceException -



getThrowable
public Throwable getThrowable() throws MessageServiceException(Code)
This method returns the exception that got thrown while processing this RPC message. The exception that got thrown while processing this message.
exception:
  MessageServiceException -



getThrowableBytes
public byte[] getThrowableBytes() throws MessageServiceException(Code)
This method returns the exception that got thrown while processing this RPC message. The bytes representing the serialized exception
exception:
  MessageServiceException -



setArguments
public void setArguments(Object[] args) throws MessageServiceException(Code)
This method sets the arguments for this message.
Parameters:
  args - The arguments to set.
exception:
  MessageServiceException -



setMethodBodyXML
public void setMethodBodyXML(String xml) throws MessageServiceException(Code)
This method sets the XML body for the message.
Parameters:
  xml - The string containing the formatted xml for the request.
exception:
  MessageServiceException -



setResult
public void setResult(Object result) throws MessageServiceException(Code)
This method is responsible for setting the result of the return.
Parameters:
  result - The result of the message.
exception:
  MessageServiceException -



setResultBytes
public void setResultBytes(byte[] result) throws MessageServiceException(Code)
This method is responsible for setting the result of the return.
Parameters:
  result - The bytes containing the result
exception:
  MessageServiceException -



setThrowable
public void setThrowable(Throwable throwable) throws MessageServiceException(Code)
This method returns the exception that got thrown while processing this RPC message.
Parameters:
  throwable - The throwable exception to set.
exception:
  MessageServiceException -



setThrowableBytes
public void setThrowableBytes(byte[] exception) throws MessageServiceException(Code)
This method sets the throwable bytes of the exception.
Parameters:
  exception - The exception bytes.
exception:
  MessageServiceException -



Methods inherited from com.rift.coad.daemon.messageservice.message.MessageImpl
public void acknowledge() throws MessageServiceException(Code)(Java Doc)
public void addError(int level, String msg) throws MessageServiceException(Code)(Java Doc)
public void addError(MessageError error)(Code)(Java Doc)
abstract public void clearBody() throws MessageServiceException(Code)(Java Doc)
public void clearProperties() throws MessageServiceException(Code)(Java Doc)
public Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean containsProperty(String name) throws MessageServiceException(Code)(Java Doc)
public boolean getBooleanProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public byte getByteProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public String getCorrelationId() throws MessageServiceException(Code)(Java Doc)
public Date getCreated()(Code)(Java Doc)
public double getDoubleProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public List getErrors() throws MessageServiceException(Code)(Java Doc)
public float getFloatProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public String getFrom() throws MessageServiceException(Code)(Java Doc)
public int getIntProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public long getLongProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public String getMessageCreater()(Code)(Java Doc)
public String getMessageId()(Code)(Java Doc)
public List getMessagePrincipals()(Code)(Java Doc)
public int getMessageType()(Code)(Java Doc)
public Date getNextProcessDate()(Code)(Java Doc)
public Object getObjectProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public int getPriority()(Code)(Java Doc)
public Date getProcessedDate()(Code)(Java Doc)
public Enumeration getPropertyNames() throws MessageServiceException(Code)(Java Doc)
public Object getPropertyValue(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public boolean getReply() throws MessageServiceException(Code)(Java Doc)
public String getReplyNamedQueue() throws MessageServiceException(Code)(Java Doc)
public String getReplyTo() throws MessageServiceException(Code)(Java Doc)
public int getRetries()(Code)(Java Doc)
public String[] getServices() throws MessageServiceException, InvalidMessageType(Code)(Java Doc)
public String getSessionId()(Code)(Java Doc)
public int getState() throws MessageServiceException(Code)(Java Doc)
public String getStringProperty(String name) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public String getTarget() throws MessageServiceException, InvalidMessageType(Code)(Java Doc)
public String getTargetNamedQueue() throws MessageServiceException(Code)(Java Doc)
public void incrementRetries()(Code)(Java Doc)
public boolean isAcknowledged() throws MessageServiceException(Code)(Java Doc)
public boolean propertyExists(String name) throws MessageServiceException(Code)(Java Doc)
public void setBooleanProperty(String name, boolean value) throws MessageServiceException(Code)(Java Doc)
public void setByteProperty(String name, byte value) throws MessageServiceException(Code)(Java Doc)
public void setCorrelationId(String id) throws MessageServiceException(Code)(Java Doc)
public void setDoubleProperty(String name, double value) throws MessageServiceException(Code)(Java Doc)
public void setFloatProperty(String name, float value) throws MessageServiceException(Code)(Java Doc)
public void setFrom(String from) throws MessageServiceException(Code)(Java Doc)
public void setIntProperty(String name, int value) throws MessageServiceException(Code)(Java Doc)
public void setLongProperty(String name, long value) throws MessageServiceException(Code)(Java Doc)
public void setMessageId(String messageId)(Code)(Java Doc)
public void setMessagePrincipals(List principals)(Code)(Java Doc)
public void setMessageType(int messageType)(Code)(Java Doc)
public void setNextProcessDate(Date nextProcessDate)(Code)(Java Doc)
public void setObjectProperty(String name, Object value) throws MessageServiceException(Code)(Java Doc)
public void setPriority(int priority) throws MessageServiceException(Code)(Java Doc)
public void setProcessedDate(Date processedDate)(Code)(Java Doc)
public void setPropertyValue(String name, Object value) throws MessageServiceException, InvalidProperty(Code)(Java Doc)
public void setReply(boolean value) throws MessageServiceException(Code)(Java Doc)
public void setReplyNamedQueue(String name) throws MessageServiceException(Code)(Java Doc)
public void setReplyTo(String replyTo) throws MessageServiceException(Code)(Java Doc)
public void setServices(String[] services) throws MessageServiceException, InvalidMessageType(Code)(Java Doc)
public void setState(int status) throws MessageServiceException(Code)(Java Doc)
public void setStringProperty(String name, String value) throws MessageServiceException(Code)(Java Doc)
public void setTarget(String target) throws MessageServiceException, InvalidMessageType(Code)(Java Doc)
public void setTargetNamedQueue(String name) throws MessageServiceException(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.