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