1. /*
  2. * @(#)Unmarshal.java 1.2 04/01/26
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.jmx.remote.internal;
  8. import java.io.IOException;
  9. import java.rmi.MarshalledObject;
  10. public interface Unmarshal {
  11. public Object get(MarshalledObject mo)
  12. throws IOException, ClassNotFoundException;
  13. }