summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/dnbd3/status/App.java
blob: 65ff524e9bad887a613b9f85db640ff76d740273 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openslx.dnbd3.status;

import java.io.IOException;

public class App
{

	public static void main( String[] args ) throws IOException
	{
		System.setProperty( "com.example.jndi.dns.timeout.initial", "400" );
		System.setProperty( "com.example.jndi.dns.timeout.retries", "2" );
		WebServer ws = new WebServer( 8888 );
		ws.run();
	}

}