Package org.neo4j.smack.pipeline.http

Source Code of org.neo4j.smack.pipeline.http.HttpHeaderName

package org.neo4j.smack.pipeline.http;

import org.neo4j.smack.gcfree.MutableString;

public class HttpHeaderName {

    private MutableString name;
   
    public HttpHeaderName(String string)
    {
        this.name = new MutableString(string);
    }

    public boolean equalsString(MutableString headerName)
    {
        return headerName.equals(name);
    }
   
}
TOP

Related Classes of org.neo4j.smack.pipeline.http.HttpHeaderName

TOP
Copyright © 2018 www.massapi.com. 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.