|
|
| WebLogic Server 7.0 Code Examples, BEA Systems, Inc. |
|
SUMMARY: INNER | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD |
examples.wtc.corba.simpappcns
Interface ToupperCorba
- All Superinterfaces:
- javax.ejb.EJBObject, java.rmi.Remote
- public interface ToupperCorba
- extends javax.ejb.EJBObject
The methods in this interface are the public face of the simpapp client.
The signatures of the methods are identical to those of the EJBean, except
that these methods throw a java.rmi.RemoteException.
Note that the EJBean does not implement this interface. The corresponding
code-generated EJBObject, ToupperBeanE, implements this interface and
delegates to the bean.
- Author:
- Copyright (c) 1998-2002 by BEA Systems, Inc. All Rights Reserved.
|
Method Summary |
java.lang.String |
Toupper(java.lang.String toConvert)
This is the classic TOUPPER simpapp method, which takes the string
argument, and converts it to all upper case. |
| Methods inherited from interface javax.ejb.EJBObject |
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove |
Toupper
public java.lang.String Toupper(java.lang.String toConvert)
throws java.rmi.RemoteException
- This is the classic TOUPPER simpapp method, which takes the string
argument, and converts it to all upper case. However, rather than
simply convert it here, this method will invoke the EJB, which will
instead ship the processing request to a Tuxedo CORBA server, which will
perform the actual work.
- Parameters:
toConvert - A string to be converted (not null)- Returns:
- the above string, converted to upper case
Copyright © 2002 BEA Systems, Inc. All Rights Reserved.