package org.jboss.iiop.csiv2;
import org.omg.CORBA.LocalObject;
import org.omg.IOP.Codec;
import org.omg.IOP.ENCODING_CDR_ENCAPS;
import org.omg.IOP.Encoding;
import org.omg.PortableInterceptor.ORBInitInfo;
import org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidName;
import org.omg.PortableInterceptor.ORBInitializer;
import org.jboss.ejb.plugins.SecurityInterceptor;
import org.jboss.system.Registry;
public class SASInitializer
extends LocalObject
implements ORBInitializer
{
static final long serialVersionUID = -2986312833694840538L;
public SASInitializer()
{
}
public void pre_init(ORBInitInfo info)
{
try
{
SASCurrent sasCurrent = new SASCurrentImpl();
info.register_initial_reference("SASCurrent", sasCurrent);
}
catch(InvalidName e)
{
throw new RuntimeException("Could not register initial " +
"reference for SASCurrent: " + e);
}
}
public void post_init(ORBInitInfo info)
{
try
{
Encoding encoding = new Encoding(ENCODING_CDR_ENCAPS.value,
(byte) 1,
(byte) 0 );
Codec codec = info.codec_factory().create_codec(encoding);
SASClientIdentityInterceptor clientInterceptor =
new SASClientIdentityInterceptor(codec);
info.add_client_request_interceptor(clientInterceptor);
SASTargetInterceptor serverInterceptor =
new SASTargetInterceptor(codec);
info.add_server_request_interceptor(serverInterceptor);
org.omg.CORBA.Object obj =
info.resolve_initial_references("SASCurrent");
final SASCurrentImpl sasCurrentImpl = (SASCurrentImpl) obj;
sasCurrentImpl.init(serverInterceptor);
Registry.bind(SecurityInterceptor.AuthenticationObserver.KEY,
new SecurityInterceptor.AuthenticationObserver() {
public void authenticationFailed()
{
sasCurrentImpl.reject_incoming_context();
}
});
}
catch(Exception e)
{
throw new RuntimeException("Unexpected " + e);
}
}
}