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

com.enonic.xp.web.websocket.EndpointFactory Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.web.websocket;

import java.util.Collections;
import java.util.List;

import javax.websocket.Endpoint;

public interface EndpointFactory
{
    Endpoint newEndpoint();

    default List getSubProtocols()
    {
        return Collections.emptyList();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy