/* * @(#)StubFactoryFactoryBase.java 1.2 04/05/25 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.corba.se.impl.presentation.rmi; import com.sun.corba.se.spi.presentation.rmi.PresentationManager; import com.sun.corba.se.impl.util.Utility ; public abstract class StubFactoryFactoryBase implements PresentationManager.StubFactoryFactory { /** * Returns the stub classname for the given interface name. * * @param fullName fully qualified name remote class */ public String getStubName(String fullName) { return Utility.stubName( fullName ) ; } }