/*
* 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 com.sun.jini.discovery.kerberos;
import com.sun.jini.discovery.ClientSubjectChecker;
import com.sun.jini.discovery.DiscoveryFormatProvider;
import com.sun.jini.discovery.UnicastDiscoveryServer;
import com.sun.jini.discovery.UnicastResponse;
import com.sun.jini.discovery.internal.EndpointBasedServer;
import com.sun.jini.discovery.internal.EndpointInternals;
import com.sun.jini.discovery.internal.KerberosEndpointInternalsAccess;
import java.io.IOException;
import java.net.Socket;
import java.nio.ByteBuffer;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Collection;
import javax.net.ServerSocketFactory;
import net.jini.core.constraint.InvocationConstraints;
import net.jini.io.UnsupportedConstraintException;
import net.jini.jeri.ServerEndpoint;
import net.jini.jeri.kerberos.KerberosServerEndpoint;
/**
* Implements the server side of the <code>net.jini.discovery.kerberos</code>
* unicast discovery format.
*
* @author Sun Microsystems, Inc.
* @since 2.0
*/
public class Server implements UnicastDiscoveryServer {
// Internal implementation. We dont want to expose the internal base
// classes to the outside.
private final ServerImpl impl;
/**
* Creates a new instance.
*/
public Server() {
impl = new ServerImpl();
}
// javadoc inherited from DiscoveryFormatProvider
public String getFormatName() {
return impl.getFormatName();
}
//javadoc inherited from UnicastDiscoveryServer
public void checkUnicastDiscoveryConstraints(
InvocationConstraints constraints)
throws UnsupportedConstraintException
{
impl.checkUnicastDiscoveryConstraints(constraints);
}
//javadoc inherited from UnicastDiscoveryServer
public void handleUnicastDiscovery(UnicastResponse response,
Socket socket,
InvocationConstraints constraints,
ClientSubjectChecker checker,
Collection context,
ByteBuffer received,
ByteBuffer sent)
throws IOException
{
impl.handleUnicastDiscovery(response, socket, constraints, checker,
context, received, sent);
}
private static final class ServerImpl extends EndpointBasedServer {
private static EndpointInternals epi = (EndpointInternals)
AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
return KerberosEndpointInternalsAccess.get();
}
});
ServerImpl() {
super("net.jini.discovery.kerberos", epi);
}
// documentation inherited from EndpointBasedServer
protected ServerEndpoint getServerEndpoint(ServerSocketFactory factory)
throws UnsupportedConstraintException
{
return KerberosServerEndpoint.getInstance("ignored", 0, null, factory);
}
}
}