1 27 28 package org.apache.catalina.session; 29 30 34 public class WebIOUtilsFactory { 35 36 private static final String IO_UTILITY_CLASS_NAME = "com.sun.ejb.base.io.IOUtilsCallerImpl"; 37 38 39 public WebIOUtilsFactory() { 40 } 41 42 public IOUtilsCaller createWebIOUtil() { 43 IOUtilsCaller webIOUtil = null; 44 try { 45 webIOUtil = 46 (IOUtilsCaller) (Class.forName(IO_UTILITY_CLASS_NAME)).newInstance(); 47 } catch (Exception ex) { 48 } 50 return webIOUtil; 51 } 52 53 54 } 55 | Popular Tags |