Subversion Repositories javautils

Compare Revisions

No changes between revisions

Regard whitespace Rev 1 → Rev 2

/ViaThinkSoft Java Utils/src/de/viathinksoft/utils/http/HttpFactory.java
0,0 → 1,20
package de.viathinksoft.utils.http;
 
/**
* This factory produces a HttpUtil instance.
* The instance is only created once.
* @author Daniel Marschall
*/
 
public class HttpFactory {
static HttpUtils instance = new HttpUtils();
 
public static HttpUtils getInstance() {
return instance;
}
 
private HttpFactory() {
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property