RestServerTest.java :  » REST » utterlyidle » com » googlecode » utterlyidle » httpserver » Java Open Source

Java Open Source » REST » utterlyidle 
utterlyidle » com » googlecode » utterlyidle » httpserver » RestServerTest.java
package com.googlecode.utterlyidle.httpserver;

import static com.googlecode.utterlyidle.BasePath.basePath;

import com.googlecode.utterlyidle.Application;
import com.googlecode.utterlyidle.CloseableCallable;
import com.googlecode.utterlyidle.Server;
import com.googlecode.utterlyidle.ServerContract;

public class RestServerTest extends ServerContract {
    protected Server createServer(CloseableCallable<Application> activator) throws Exception {
        return new RestServer(basePath("/"), activator);
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.