//TODO This expects that the ServerSocketFactory initialized
//is a seperated instance. A brief check of the grizzly
//classes involved reveals that it is for the default JSSE14 factories
SSLImplementation sslHelper = SSLImplementation.getInstance();
serverSF = sslHelper.getServerSocketFactory();
serverSF.setAttribute("keystoreType", "JKS");
serverSF.setAttribute("keystore", keyStore);
serverSF.setAttribute("keystorePass", keypass);