/* * JBoss, Home of Professional Open Source. * Copyright 2015, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.remoting3; import java.io.IOException; import java.security.AccessController; import java.security.PrivilegedActionException; import java.security.PrivilegedExceptionAction; import java.util.ArrayList; import java.util.List; import org.jboss.remoting3.security.RemotingPermission; import org.xnio.Xnio; import org.xnio.XnioWorker; /** * A builder for a Remoting endpoint. * * @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> */ public final class EndpointBuilder { private String endpointName; private XnioWorker xnioWorker; private List<ConnectionProviderFactoryBuilder> connectionProviderFactoryBuilders; private XnioWorker.Builder workerBuilder; EndpointBuilder() { } public EndpointBuilder setEndpointName(final String endpointName) { this.endpointName = endpointName; return this; } public EndpointBuilder setXnioWorker(final XnioWorker xnioWorker) { this.workerBuilder = null; this.xnioWorker = xnioWorker; return this; } public XnioWorker.Builder buildXnioWorker(final Xnio xnio) { this.xnioWorker = null; return this.workerBuilder = xnio.createWorkerBuilder(); } public ConnectionProviderFactoryBuilder addProvider(final String scheme) { final ConnectionProviderFactoryBuilder builder = new ConnectionProviderFactoryBuilder(scheme); if (connectionProviderFactoryBuilders == null) { connectionProviderFactoryBuilders = new ArrayList<>(); connectionProviderFactoryBuilders.add(builder); } return builder; } String getEndpointName() { return endpointName; } XnioWorker getXnioWorker() { return xnioWorker; } XnioWorker.Builder getWorkerBuilder() { return workerBuilder; } List<ConnectionProviderFactoryBuilder> getConnectionProviderFactoryBuilders() { return connectionProviderFactoryBuilders; } public Endpoint build() throws IOException { final SecurityManager sm = System.getSecurityManager(); if (sm != null) { sm.checkPermission(RemotingPermission.CREATE_ENDPOINT); } try { return AccessController.doPrivileged((PrivilegedExceptionAction<Endpoint>) () -> EndpointImpl.construct(this)); } catch (PrivilegedActionException e) { throw (IOException) e.getException(); } } }