1. /*
  2. * @(#)IORTransformer.java 1.7 03/12/19
  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.corba.se.spi.transport ;
  8. import com.sun.corba.se.spi.ior.IOR ;
  9. import com.sun.corba.se.spi.encoding.CorbaInputObject ;
  10. import com.sun.corba.se.spi.encoding.CorbaOutputObject ;
  11. /** Interface that provides operations to transorm an IOR
  12. * between its programmatic representation and a representation
  13. * in an Input or Output object.
  14. */
  15. public interface IORTransformer {
  16. IOR unmarshal( CorbaInputObject io ) ;
  17. void marshal( CorbaOutputObject oo, IOR ior ) ;
  18. }