Package com.subhajit.common.util

Examples of com.subhajit.common.util.IClassLoader


   *             of the object being deserialized.
   */
  public static Serializable toObject(byte[] bytes,
      final ClassLoader classLoader) throws IOException,
      ClassNotFoundException {
    return toObject(bytes, new IClassLoader() {
      public Class<?> loadClass(String className)
          throws ClassNotFoundException {
        return classLoader.loadClass(className);
      }
    });
View Full Code Here

TOP

Related Classes of com.subhajit.common.util.IClassLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.