com.ibm.websphere.bo

Interface BOPrinter


  1. public interface BOPrinter
Print the Business Object content or Business Object type information for human reading. Note: The output format may be changed in future release, so use this for debugging or tracing purpose only.

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. void
print(commonj.sdo.ChangeSummary changeSummary,java.io.OutputStream out)
Print ChangeSummary content to specified output stream.
  1. void
print(commonj.sdo.DataObject dataObject,java.io.OutputStream out)
Print Business Object content to specified output stream.
  1. void
print(commonj.sdo.Type type,java.io.OutputStream out)
Print Business Object type to specified output stream.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

  1. void print(commonj.sdo.DataObject dataObject,
  2. java.io.OutputStream out)
  3. throws java.io.IOException
Print Business Object content to specified output stream.
Parameters:
dataObject - the Business Object to be printed out
out - the output stream
Throws:
java.io.IOException

  1. void print(commonj.sdo.Type type,
  2. java.io.OutputStream out)
  3. throws java.io.IOException
Print Business Object type to specified output stream.
Parameters:
type - the Business Object type to be printed out.
out - the output stream
Throws:
java.io.IOException

  1. void print(commonj.sdo.ChangeSummary changeSummary,
  2. java.io.OutputStream out)
  3. throws java.io.IOException
Print ChangeSummary content to specified output stream.
Parameters:
changeSummary - the Change Summary to be printed out.
out - the output stream
Throws:
java.io.IOException