1. /*
  2. * @(#)ClientSC.java 1.9 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.internal.POA;
  8. import com.sun.corba.se.internal.ior.POAId ;
  9. public interface ClientSC
  10. {
  11. /** Return the objectid of the target POA objref associated with this
  12. * Delegate.
  13. */
  14. public byte[] getObjectId();
  15. /** Return the objectid of the target POA objref associated with this
  16. * Delegate.
  17. */
  18. public POAId getPOAId();
  19. }