Class RIDCHttpPartImpl<T>

java.lang.Object
oracle.stellent.ridc.common.http.impl.RIDCHttpPartImpl<T>
Type Parameters:
T -
All Implemented Interfaces:
RIDCHttpPart<T>

public class RIDCHttpPartImpl<T> extends Object implements RIDCHttpPart<T>
RIDC HTTP Part Implementation
  • Constructor Details

    • RIDCHttpPartImpl

      public RIDCHttpPartImpl(String name, T content)
      Create a HTTP Part
      Parameters:
      name - part name
      content - part content
    • RIDCHttpPartImpl

      public RIDCHttpPartImpl(String name, T content, String encoding)
      Create a HTTP part with a specific encoding
      Parameters:
      name - part name
      content - part content
      encoding - part encoding
  • Method Details

    • getContent

      public T getContent()
      Return the content of the part
      Specified by:
      getContent in interface RIDCHttpPart<T>
      Returns:
      either a string or a TransferFile
    • getType

      public RIDCHttpPart.PartType getType()
      Return the type of the part
      Specified by:
      getType in interface RIDCHttpPart<T>
      Returns:
      type of the part (either string or file)
    • getName

      public String getName()
      Return the name of the part
      Specified by:
      getName in interface RIDCHttpPart<T>
      Returns:
      the name
    • setName

      protected void setName(String name)
      Set the name of the part
      Parameters:
      name -
    • getEncoding

      public String getEncoding()
      Get the encoding of the part, default is UTF-8
      Specified by:
      getEncoding in interface RIDCHttpPart<T>
      Returns:
      the encoding, default is UTF-8
    • setEncoding

      protected void setEncoding(String encoding)
      Set the content encoding
      Parameters:
      encoding -