mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
01.18.2007 3e3246e42af6979556dec66ec10ad3d3e009217c
opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/IntermediateResponseProtocolOp.java
@@ -74,7 +74,6 @@
   */
  public IntermediateResponseProtocolOp(String oid)
  {
    this.oid   = oid;
    this.value = null;
  }
@@ -90,7 +89,6 @@
   */
  public IntermediateResponseProtocolOp(String oid, ASN1OctetString value)
  {
    this.oid   = oid;
    this.value = value;
  }
@@ -105,7 +103,6 @@
   */
  public String getOID()
  {
    return oid;
  }
@@ -118,7 +115,6 @@
   */
  public void setOID(String oid)
  {
    this.oid = oid;
  }
@@ -132,7 +128,6 @@
   */
  public ASN1OctetString getValue()
  {
    return value;
  }
@@ -145,7 +140,6 @@
   */
  public void setValue(ASN1OctetString value)
  {
    this.value = value;
  }
@@ -158,7 +152,6 @@
   */
  public byte getType()
  {
    return OP_TYPE_INTERMEDIATE_RESPONSE;
  }
@@ -171,7 +164,6 @@
   */
  public String getProtocolOpName()
  {
    return "Intermediate Response";
  }
@@ -185,7 +177,6 @@
   */
  public ASN1Element encode()
  {
    ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
    if (oid != null)
@@ -220,7 +211,6 @@
                     decodeIntermediateResponse(ASN1Element element)
         throws LDAPException
  {
    ArrayList<ASN1Element> elements;
    try
    {
@@ -346,7 +336,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("IntermediateResponse(oid=");
    buffer.append(String.valueOf(oid));
@@ -371,7 +360,6 @@
   */
  public void toString(StringBuilder buffer, int indent)
  {
    StringBuilder indentBuf = new StringBuilder(indent);
    for (int i=0 ; i < indent; i++)
    {