Package com.rimfaxe.util

Examples of com.rimfaxe.util.CaseInsensitiveString


    if (header == null)
    {
      parseHeader();
    }
    if (header == null) return null;
    return (String) header.get( new CaseInsensitiveString(key) );
  }
View Full Code Here


    else return false;
  }
 
  public void removeHeader(String name)
  {
     header.remove(new CaseInsensitiveString(name));
  }
View Full Code Here

    if ( hasHeader(name) )
    {
       removeHeader(name);
    }  
   
    header.put(new CaseInsensitiveString(name), val);
  }
View Full Code Here

      int colon = h.indexOf(':');
     
      String k = h.substring(0,colon)
      String v = h.substring(colon+2);
      if (DEBUG) System.err.println("httpRequest: key="+k+", val="+v);
      header.put( new CaseInsensitiveString(k),v);
    }
  }
View Full Code Here

TOP

Related Classes of com.rimfaxe.util.CaseInsensitiveString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.