io.undertow.websockets.jsr.ConfiguredServerEndpoint Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2014 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.undertow.websockets.jsr;
import java.util.List;
import io.undertow.servlet.api.InstanceFactory;
import io.undertow.util.PathTemplate;
import io.undertow.websockets.jsr.annotated.AnnotatedEndpointFactory;
import javax.websocket.Extension;
import javax.websocket.server.ServerEndpointConfig;
/**
* @author Stuart Douglas
*/
public class ConfiguredServerEndpoint extends SessionContainer {
private final ServerEndpointConfig endpointConfiguration;
private final AnnotatedEndpointFactory annotatedEndpointFactory;
private final InstanceFactory> endpointFactory;
private final PathTemplate pathTemplate;
private final EncodingFactory encodingFactory;
private final List extensions;
public ConfiguredServerEndpoint(final ServerEndpointConfig endpointConfiguration, final InstanceFactory> endpointFactory, final PathTemplate pathTemplate, final EncodingFactory encodingFactory, AnnotatedEndpointFactory annotatedEndpointFactory, List installed) {
this.endpointConfiguration = endpointConfiguration;
this.endpointFactory = endpointFactory;
this.pathTemplate = pathTemplate;
this.encodingFactory = encodingFactory;
this.annotatedEndpointFactory = annotatedEndpointFactory;
this.extensions = installed;
}
public ConfiguredServerEndpoint(final ServerEndpointConfig endpointConfiguration, final InstanceFactory> endpointFactory, final PathTemplate pathTemplate, final EncodingFactory encodingFactory) {
this.endpointConfiguration = endpointConfiguration;
this.endpointFactory = endpointFactory;
this.pathTemplate = pathTemplate;
this.encodingFactory = encodingFactory;
this.annotatedEndpointFactory = null;
this.extensions = endpointConfiguration.getExtensions();
}
public ServerEndpointConfig getEndpointConfiguration() {
return endpointConfiguration;
}
public InstanceFactory> getEndpointFactory() {
return endpointFactory;
}
public PathTemplate getPathTemplate() {
return pathTemplate;
}
public EncodingFactory getEncodingFactory() {
return encodingFactory;
}
public AnnotatedEndpointFactory getAnnotatedEndpointFactory() {
return annotatedEndpointFactory;
}
/**
* Return the websocket extensions configured.
*
* @return the list of extensions, the empty list if none.
*/
public List getExtensions() {
return extensions;
}
}