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

javax.net.websocket.ContainerProvider Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package javax.net.websocket;

/**
 * Provider class that uses the ServiceLoader mechanism to provide
 * implementations of ServerContainer and ClientContainer.
 * @author dannycoward
 */
public class ContainerProvider {
   
    public static ServerContainer getServerContainer() {
        return null;
    }
    
    public static ClientContainer getClientContainer() {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy