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

org.eclipse.jetty.websocket.jsr356.server.BasicServerEndpointConfig Maven / Gradle / Ivy

There is a newer version: 11.0.0.beta1
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2017 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.websocket.jsr356.server;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.websocket.Decoder;
import javax.websocket.Encoder;
import javax.websocket.Extension;
import javax.websocket.server.ServerEndpointConfig;

public class BasicServerEndpointConfig implements ServerEndpointConfig
{
    private final List> decoders;
    private final List> encoders;
    private final List extensions;
    private final List subprotocols;
    private final ServerEndpointConfig.Configurator configurator;
    private final Class endpointClass;
    private final String path;
    private Map userProperties;

    public BasicServerEndpointConfig(Class endpointClass, String path)
    {
        this.endpointClass = endpointClass;
        this.path = path;

        this.decoders = new ArrayList<>();
        this.encoders = new ArrayList<>();
        this.subprotocols = new ArrayList<>();
        this.extensions = new ArrayList<>();
        this.userProperties = new HashMap<>();
        this.configurator = BasicServerEndpointConfigurator.INSTANCE;
    }

    public BasicServerEndpointConfig(ServerEndpointConfig copy)
    {
        // immutable concepts
        this.endpointClass = copy.getEndpointClass();
        this.path = copy.getPath();

        this.decoders = copy.getDecoders();
        this.encoders = copy.getEncoders();
        this.subprotocols = copy.getSubprotocols();
        this.extensions = copy.getExtensions();
        if (copy.getConfigurator() != null)
        {
            this.configurator = copy.getConfigurator();
        }
        else
        {
            this.configurator = BasicServerEndpointConfigurator.INSTANCE;
        }

        // mutable concepts
        this.userProperties = new HashMap<>(copy.getUserProperties());
    }

    @Override
    public List> getEncoders()
    {
        return encoders;
    }

    @Override
    public List> getDecoders()
    {
        return decoders;
    }

    @Override
    public Map getUserProperties()
    {
        return userProperties;
    }

    @Override
    public Class getEndpointClass()
    {
        return endpointClass;
    }

    @Override
    public String getPath()
    {
        return path;
    }

    @Override
    public List getSubprotocols()
    {
        return subprotocols;
    }

    @Override
    public List getExtensions()
    {
        return extensions;
    }

    @Override
    public ServerEndpointConfig.Configurator getConfigurator()
    {
        return configurator;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy