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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/protocols/ldap/ExtendedRequestProtocolOp.java
@@ -71,7 +71,6 @@
   */
  public ExtendedRequestProtocolOp(String oid)
  {
    this.oid   = oid;
    this.value = null;
  }
@@ -87,7 +86,6 @@
   */
  public ExtendedRequestProtocolOp(String oid, ASN1OctetString value)
  {
    this.oid   = oid;
    this.value = value;
  }
@@ -101,7 +99,6 @@
   */
  public String getOID()
  {
    return oid;
  }
@@ -114,7 +111,6 @@
   */
  public void setOID(String oid)
  {
    this.oid = oid;
  }
@@ -128,7 +124,6 @@
   */
  public ASN1OctetString getValue()
  {
    return value;
  }
@@ -141,7 +136,6 @@
   */
  public void setValue(ASN1OctetString value)
  {
    this.value = value;
  }
@@ -154,7 +148,6 @@
   */
  public byte getType()
  {
    return OP_TYPE_EXTENDED_REQUEST;
  }
@@ -167,7 +160,6 @@
   */
  public String getProtocolOpName()
  {
    return "Extended Request";
  }
@@ -181,7 +173,6 @@
   */
  public ASN1Element encode()
  {
    ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(2);
    elements.add(new ASN1OctetString(TYPE_EXTENDED_REQUEST_OID, oid));
@@ -211,7 +202,6 @@
                                                                     element)
         throws LDAPException
  {
    ArrayList<ASN1Element> elements;
    try
    {
@@ -295,7 +285,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append("ExtendedRequest(oid=");
    buffer.append(oid);
@@ -320,7 +309,6 @@
   */
  public void toString(StringBuilder buffer, int indent)
  {
    StringBuilder indentBuf = new StringBuilder(indent);
    for (int i=0 ; i < indent; i++)
    {