All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.aguacate.http.HttpBodyParserCoupling Maven / Gradle / Ivy

There is a newer version: 0.10.9
Show newest version
package net.sf.aguacate.http;

import net.sf.aguacate.http.impl.HttpBodyParserImpl;

public final class HttpBodyParserCoupling {

	private static final HttpBodyParser INSTANCE;

	static {
		INSTANCE = new HttpBodyParserImpl();
	}

	private HttpBodyParserCoupling() {
	}

	public static final HttpBodyParser defaultInstance() {
		return INSTANCE;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy