/* 538 */ if (this.sslDomain != null)
/* */ {
/* */ try
/* */ {
/* 542 */ InitialContext ctx = new InitialContext();
/* 543 */ SecurityDomain domain = (SecurityDomain)ctx.lookup(this.sslDomain);
/* 544 */ Class[] parameterTypes = { SecurityDomain.class };
/* 545 */ Method m = ssfClass.getMethod("setSecurityDomain", parameterTypes);
/* 546 */ Object[] args = { domain };
/* 547 */ m.invoke(this.serverSocketFactory, args);
/* */ }