1. /*
  2. * @(#)StubFactoryFactoryBase.java 1.2 04/05/25
  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.impl.presentation.rmi;
  8. import com.sun.corba.se.spi.presentation.rmi.PresentationManager;
  9. import com.sun.corba.se.impl.util.Utility ;
  10. public abstract class StubFactoryFactoryBase implements
  11. PresentationManager.StubFactoryFactory
  12. {
  13. /**
  14. * Returns the stub classname for the given interface name.
  15. *
  16. * @param fullName fully qualified name remote class
  17. */
  18. public String getStubName(String fullName)
  19. {
  20. return Utility.stubName( fullName ) ;
  21. }
  22. }