KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > presentation > rmi > StubFactoryFactoryBase


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
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 implements
15     PresentationManager.StubFactoryFactory
16 {
17     /**
18      * Returns the stub classname for the given interface name.
19      *
20      * @param fullName fully qualified name remote class
21      */

22     public String JavaDoc getStubName(String JavaDoc fullName)
23     {
24     return Utility.stubName( fullName ) ;
25     }
26 }
27
Popular Tags