Class Connection

java.lang.Object
oracle.stellent.ridc.protocol.Connection
Direct Known Subclasses:
IdcHttpClientConnection, JaxWSClientConnection, SocketConnection

@Concealed public abstract class Connection extends Object
A connection to the Content Server for the given protocol.
  • Constructor Details

    • Connection

      public Connection()
  • Method Details

    • isConnected

      public abstract boolean isConnected()
      Returns:
      true if this is connection is active
    • getInputStream

      public abstract InputStream getInputStream() throws IOException
      Get a input stream for this connection
      Returns:
      an input stream
      Throws:
      IOException
    • getOutputStream

      public abstract OutputStream getOutputStream() throws IOException
      Get a output stream for this connection
      Returns:
      an output stream
      Throws:
      IOException
    • reset

      protected void reset()
      Reset the connection fields
    • close

      public void close() throws ProtocolException
      Close the connection
      Throws:
      ProtocolException
    • connect

      public void connect() throws ProtocolException
      Create and initialize a connection
      Throws:
      ProtocolException