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