Java Doc for BurlapOutput.java in  » Web-Services » hessian » com » caucho » burlap » io » 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 » Web Services » hessian » com.caucho.burlap.io 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.caucho.burlap.io.AbstractBurlapOutput
   com.caucho.burlap.io.BurlapOutput

BurlapOutput
public class BurlapOutput extends AbstractBurlapOutput (Code)
Output stream for Burlap requests, compatible with microedition Java. It only uses classes and types available in JDK.

Since BurlapOutput does not depend on any classes other than in the JDK, it can be extracted independently into a smaller package.

BurlapOutput is unbuffered, so any client needs to provide its own buffering.

 OutputStream os = ...; // from http connection
 BurlapOutput out = new BurlapOutput(os);
 String value;
 out.startCall("hello");  // start hello call
 out.writeString("arg1"); // write a string argument
 out.completeCall();      // complete the call
 


Field Summary
protected  OutputStreamos
    

Constructor Summary
public  BurlapOutput(OutputStream os)
     Creates a new Burlap output stream, initialized with an underlying output stream.
public  BurlapOutput()
     Creates an uninitialized Burlap output stream.

Method Summary
public  booleanaddRef(Object object)
     If the object has already been written, just write its ref.
public  voidcall(String method, Object[] args)
     Writes a complete method call.
public  voidcompleteCall()
     Completes.
public  voidcompleteReply()
    
public  voidinit(OutputStream os)
    
protected  voidprint(char v)
     Prints a char to the stream.
protected  voidprint(int v)
     Prints an integer to the stream.
protected  voidprint(long v)
     Prints a long to the stream.
protected  voidprint(double v)
     Prints a double to the stream.
protected  voidprint(String s)
     Prints a string as ascii to the stream.
public  voidprintDate(Calendar calendar)
     Prints a date.
public  voidprintString(String v)
    
public  voidprintString(String v, int offset, int length)
    
public  voidprintString(char[] v, int offset, int length)
    
public  booleanremoveRef(Object obj)
     Removes a reference.
public  booleanreplaceRef(Object oldRef, Object newRef)
     Replaces a reference from one object to another.
public  voidstartCall(String method)
     Starts the method call.
public  voidstartCall()
     Starts the method call.
public  voidstartReply()
    
public  voidwriteBoolean(boolean value)
     Writes a boolean value to the stream.
public  voidwriteByteBufferEnd(byte[] buffer, int offset, int length)
     Writes a byte buffer to the stream.
public  voidwriteByteBufferPart(byte[] buffer, int offset, int length)
     Writes a byte buffer to the stream.
public  voidwriteByteBufferStart()
     Writes a byte buffer to the stream.
public  voidwriteBytes(byte[] buffer)
     Writes a byte array to the stream.
public  voidwriteBytes(byte[] buffer, int offset, int length)
     Writes a byte array to the stream.
public  voidwriteDouble(double value)
     Writes a double value to the stream.
public  voidwriteFault(String code, String message, Object detail)
     Writes a fault.
public  voidwriteHeader(String name)
     Writes a header name.
public  voidwriteInt(int value)
     Writes an integer value to the stream.
public  booleanwriteListBegin(int length, String type)
     Writes the list header to the stream.
public  voidwriteListEnd()
     Writes the tail of the list to the stream.
public  voidwriteLong(long value)
     Writes a long value to the stream.
public  voidwriteMapBegin(String type)
     Writes the map header to the stream.
public  voidwriteMapEnd()
     Writes the tail of the map to the stream.
public  voidwriteMethod(String method)
     Writes the method for a call.
public  voidwriteNull()
     Writes a null value to the stream.
public  voidwriteObject(Object object)
     Writes any object to the output stream.
public  voidwriteRef(int value)
     Writes a reference.
public  voidwriteRemote(String type, String url)
     Writes a remote object reference to the stream.
public  voidwriteString(String value)
     Writes a string value to the stream using UTF-8 encoding.
public  voidwriteString(char[] buffer, int offset, int length)
     Writes a string value to the stream using UTF-8 encoding.
public  voidwriteUTCDate(long time)
     Writes a date to the stream.

Field Detail
os
protected OutputStream os(Code)




Constructor Detail
BurlapOutput
public BurlapOutput(OutputStream os)(Code)
Creates a new Burlap output stream, initialized with an underlying output stream.
Parameters:
  os - the underlying output stream.



BurlapOutput
public BurlapOutput()(Code)
Creates an uninitialized Burlap output stream.




Method Detail
addRef
public boolean addRef(Object object) throws IOException(Code)
If the object has already been written, just write its ref. true if we're writing a ref.



call
public void call(String method, Object[] args) throws IOException(Code)
Writes a complete method call.



completeCall
public void completeCall() throws IOException(Code)
Completes.
 </burlap:call>
 



completeReply
public void completeReply() throws IOException(Code)
Completes reading the reply

A successful completion will have a single value:

 </burlap:reply>
 



init
public void init(OutputStream os)(Code)
Initializes the output



print
protected void print(char v) throws IOException(Code)
Prints a char to the stream.
Parameters:
  v - the char to print.



print
protected void print(int v) throws IOException(Code)
Prints an integer to the stream.
Parameters:
  v - the integer to print.



print
protected void print(long v) throws IOException(Code)
Prints a long to the stream.
Parameters:
  v - the long to print.



print
protected void print(double v) throws IOException(Code)
Prints a double to the stream.
Parameters:
  v - the double to print.



print
protected void print(String s) throws IOException(Code)
Prints a string as ascii to the stream. Used for tags, etc. that are known to the ascii.
Parameters:
  s - the ascii string to print.



printDate
public void printDate(Calendar calendar) throws IOException(Code)
Prints a date.
Parameters:
  date - the date to print.



printString
public void printString(String v) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8
Parameters:
  v - the string to print.



printString
public void printString(String v, int offset, int length) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8
Parameters:
  v - the string to print.



printString
public void printString(char[] v, int offset, int length) throws IOException(Code)
Prints a string to the stream, encoded as UTF-8
Parameters:
  v - the string to print.



removeRef
public boolean removeRef(Object obj) throws IOException(Code)
Removes a reference.



replaceRef
public boolean replaceRef(Object oldRef, Object newRef) throws IOException(Code)
Replaces a reference from one object to another.



startCall
public void startCall(String method) throws IOException(Code)
Starts the method call. Clients would use startCall instead of call if they wanted finer control over writing the arguments, or needed to write headers.
 <burlap:call>
 <method>method-name</method>
 

Parameters:
  method - the method name to call.



startCall
public void startCall() throws IOException(Code)
Starts the method call. Clients would use startCall instead of call if they wanted finer control over writing the arguments, or needed to write headers.
 <method>method-name</method>
 

Parameters:
  method - the method name to call.



startReply
public void startReply() throws IOException(Code)
Starts the reply

A successful completion will have a single value:

 r
 



writeBoolean
public void writeBoolean(boolean value) throws IOException(Code)
Writes a boolean value to the stream. The boolean will be written with the following syntax:
 <boolean>0</boolean>
 <boolean>1</boolean>
 

Parameters:
  value - the boolean value to write.



writeByteBufferEnd
public void writeByteBufferEnd(byte[] buffer, int offset, int length) throws IOException(Code)
Writes a byte buffer to the stream.
 b b16 b18 bytes
 



writeByteBufferPart
public void writeByteBufferPart(byte[] buffer, int offset, int length) throws IOException(Code)
Writes a byte buffer to the stream.
 b b16 b18 bytes
 



writeByteBufferStart
public void writeByteBufferStart() throws IOException(Code)
Writes a byte buffer to the stream.



writeBytes
public void writeBytes(byte[] buffer) throws IOException(Code)
Writes a byte array to the stream. The array will be written with the following syntax:
 <base64>bytes</base64>
 
If the value is null, it will be written as
 <null></null>
 

Parameters:
  value - the string value to write.



writeBytes
public void writeBytes(byte[] buffer, int offset, int length) throws IOException(Code)
Writes a byte array to the stream. The array will be written with the following syntax:
 <base64>bytes</base64>
 
If the value is null, it will be written as
 <null></null>
 

Parameters:
  value - the string value to write.



writeDouble
public void writeDouble(double value) throws IOException(Code)
Writes a double value to the stream. The double will be written with the following syntax:
 <double>value</double>
 

Parameters:
  value - the double value to write.



writeFault
public void writeFault(String code, String message, Object detail) throws IOException(Code)
Writes a fault. The fault will be written as a descriptive string followed by an object:
 <fault>
 <string>code
 <string>the fault code
 <string>message
 <string>the fault mesage
 <string>detail
 <map>t\x00\xnnjavax.ejb.FinderException
 ...
 </map>
 </fault>
 

Parameters:
  code - the fault code, a three digit



writeHeader
public void writeHeader(String name) throws IOException(Code)
Writes a header name. The header value must immediately follow.
 <header>foo</header><int>value</int>
 



writeInt
public void writeInt(int value) throws IOException(Code)
Writes an integer value to the stream. The integer will be written with the following syntax:
 <int>int value</int>
 

Parameters:
  value - the integer value to write.



writeListBegin
public boolean writeListBegin(int length, String type) throws IOException(Code)
Writes the list header to the stream. List writers will call writeListBegin followed by the list contents and then call writeListEnd.
 <list>
 <type>java.util.ArrayList</type>
 <length>3</length>
 <int>1</int>
 <int>2</int>
 <int>3</int>
 </list>
 



writeListEnd
public void writeListEnd() throws IOException(Code)
Writes the tail of the list to the stream.



writeLong
public void writeLong(long value) throws IOException(Code)
Writes a long value to the stream. The long will be written with the following syntax:
 <long>int value</long>
 

Parameters:
  value - the long value to write.



writeMapBegin
public void writeMapBegin(String type) throws IOException(Code)
Writes the map header to the stream. Map writers will call writeMapBegin followed by the map contents and then call writeMapEnd.
 <map>
 <type>type</type>
 (<key> <value>)*
 </map>
 



writeMapEnd
public void writeMapEnd() throws IOException(Code)
Writes the tail of the map to the stream.



writeMethod
public void writeMethod(String method) throws IOException(Code)
Writes the method for a call.
 <method>value</method>
 

Parameters:
  method - the method name to call.



writeNull
public void writeNull() throws IOException(Code)
Writes a null value to the stream. The null will be written with the following syntax
 <null></null>
 

Parameters:
  value - the string value to write.



writeObject
public void writeObject(Object object) throws IOException(Code)
Writes any object to the output stream.



writeRef
public void writeRef(int value) throws IOException(Code)
Writes a reference.
 <ref>int</ref>
 

Parameters:
  value - the integer value to write.



writeRemote
public void writeRemote(String type, String url) throws IOException(Code)
Writes a remote object reference to the stream. The type is the type of the remote interface.
 <remote>
 <type>test.account.Account</type>
 <string>http://caucho.com/foo;ejbid=bar</string>
 </remote>
 



writeString
public void writeString(String value) throws IOException(Code)
Writes a string value to the stream using UTF-8 encoding. The string will be written with the following syntax:
 <string>string-value</string>
 
If the value is null, it will be written as
 <null></null>
 

Parameters:
  value - the string value to write.



writeString
public void writeString(char[] buffer, int offset, int length) throws IOException(Code)
Writes a string value to the stream using UTF-8 encoding. The string will be written with the following syntax:
 S b16 b8 string-value
 
If the value is null, it will be written as
 N
 

Parameters:
  value - the string value to write.



writeUTCDate
public void writeUTCDate(long time) throws IOException(Code)
Writes a date to the stream.
 <date>iso8901</date>
 

Parameters:
  time - the date in milliseconds from the epoch in UTC




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