/*
* 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.internal;
import com.sun.jini.discovery.internal.EndpointInternals;
import com.sun.jini.discovery.internal.EndpointInternalsPermission;
import net.jini.jeri.kerberos.KerberosEndpoint;
/**
* Provides a rendezvous point for the net.jini.jeri.kerberos transport
* provider to register an EndpointInternals instance used by provider classes
* for the net.jini.discovery.kerberos unicast discovery format.
*/
public class KerberosEndpointInternalsAccess {
private static EndpointInternals endpointInternals = null;
private static final Object lock = new Object();
static {
try {
KerberosEndpoint.getInstance("triggerStaticInitializer", 1, null);
} catch (NullPointerException e) {
// expected
}
}
private KerberosEndpointInternalsAccess() {
}
/**
* Registers EndpointInternals instance to use for back-door operations on
* KerberosEndpoint and KerberosServerEndpoints. This method should be
* called only once, from within the static initializer of the
* KerberosEndpoint class. If a security manager is installed, this method
* checks that the calling context has EndpointInternalsPermission. Throws
* IllegalStateException if EndpointInternals instance has already been
* set.
*/
public static void set(EndpointInternals endpointInternals) {
if (endpointInternals == null) {
throw new NullPointerException();
}
SecurityManager sm = System.getSecurityManager();
if (sm != null) {
sm.checkPermission(new EndpointInternalsPermission(
EndpointInternalsPermission.SET));
}
synchronized (lock) {
if (KerberosEndpointInternalsAccess.endpointInternals != null) {
throw new IllegalStateException(
"endpointInternals already set");
}
KerberosEndpointInternalsAccess.endpointInternals =
endpointInternals;
}
}
/**
* Returns registered EndpointInternals instance. Throws
* IllegalStateException if EndpointInternals instance has not been set.
*/
public static EndpointInternals get() {
SecurityManager sm = System.getSecurityManager();
if (sm != null) {
sm.checkPermission(new EndpointInternalsPermission(
EndpointInternalsPermission.GET));
}
synchronized (lock) {
if (endpointInternals == null) {
throw new IllegalStateException("endpointInternals not set");
}
return endpointInternals;
}
}
}