Class MultipartPostBinderSerializer

java.lang.Object
oracle.stellent.ridc.model.serialize.MultipartPostBinderSerializer

public class MultipartPostBinderSerializer extends Object
Serializes a binder over a multipart post
  • Constructor Details

    • MultipartPostBinderSerializer

      public MultipartPostBinderSerializer(DataBinder dataBinder)
    • MultipartPostBinderSerializer

      public MultipartPostBinderSerializer(DataBinder dataBinder, String encoding)
  • Method Details

    • getDataBinder

      public DataBinder getDataBinder()
    • getPostString

      public String getPostString()
    • getBreakString

      public String getBreakString()
    • prepareMultipartPost

      public void prepareMultipartPost()
      Prepare this object for a multipart post
    • countBytes

      public long countBytes()
      Returns:
      the number of bytes to send for this multipart post
    • writeBinder

      public void writeBinder(OutputStream out) throws IOException
      Write the multipart post out to the given stream
      Parameters:
      out - the output stream
      Throws:
      IOException
    • prepareBoundary

      protected void prepareBoundary()
      Create a large, randomly generated boundary string for separation of files and data in this multipart post
    • createPostStr

      protected void createPostStr()
      Package together the local data in a multipost manner
    • createFilePostInfo

      protected void createFilePostInfo()
      Add the file post header information to the map
    • createFilePostInfo

      protected String createFilePostInfo(String name, TransferFile file)
      Create the post header for the file bytes send along in a multipart post
    • sendFiles

      protected void sendFiles(OutputStream out) throws IOException
      Send along all files into the output stream
      Throws:
      IOException
    • getBytes

      protected byte[] getBytes(String str) throws UnsupportedEncodingException
      Utility function to obtain a byte stream based on the encoding set, or to the default system encoding if no encoding is set.
      Parameters:
      str - the string to examine
      Returns:
      the bytes for the encoding
      Throws:
      UnsupportedEncodingException