/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.activemq.transport.nio; import java.io.IOException; import java.net.Socket; import java.net.URI; import java.net.URISyntaxException; import javax.net.ServerSocketFactory; import javax.net.ssl.SSLContext; import org.apache.activemq.transport.Transport; import org.apache.activemq.transport.tcp.TcpTransportFactory; import org.apache.activemq.transport.tcp.TcpTransportServer; import org.apache.activemq.wireformat.WireFormat; public class NIOSSLTransportServer extends TcpTransportServer { private SSLContext context; public NIOSSLTransportServer(SSLContext context, TcpTransportFactory transportFactory, URI location, ServerSocketFactory serverSocketFactory) throws IOException, URISyntaxException { super(transportFactory, location, serverSocketFactory); this.context = context; } private boolean needClientAuth; private boolean wantClientAuth; @Override protected Transport createTransport(Socket socket, WireFormat format) throws IOException { NIOSSLTransport transport = new NIOSSLTransport(format, socket, null, null, null); if (context != null) { transport.setSslContext(context); } transport.setNeedClientAuth(needClientAuth); transport.setWantClientAuth(wantClientAuth); return transport; } @Override public boolean isSslServer() { return true; } public boolean isNeedClientAuth() { return this.needClientAuth; } public void setNeedClientAuth(boolean value) { this.needClientAuth = value; } public boolean isWantClientAuth() { return this.wantClientAuth; } public void setWantClientAuth(boolean value) { this.wantClientAuth = value; } }