All Examples  All WebLogic Enterprise Connectivity Examples This Package  

Interface examples.wlec.ejb.simpapp.Converter

public interface Converter
The methods in this interface are the public face of ConverterBean. 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 ConverterBeanE implements this interface and delegates to the bean.


Method Index

 o toLower(String)
Converts to lowercase.
 o toUpper(String)
Converts to uppercase.

Methods

 o toUpper
 public abstract ConverterResult toUpper(String inData) throws ProcessingErrorException, RemoteException
Converts to uppercase.

Parameters:
inData - String Input data
Returns:
ConverterResult conversion Result
Throws: ProcessingErrorException
if there is an error while converting the string
Throws: RemoteException
if there is a communications or systems failure
 o toLower
 public abstract ConverterResult toLower(String inData) throws ProcessingErrorException, RemoteException
Converts to lowercase.

Parameters:
inData - String Input data
Returns:
ConverterResult conversion Result
Throws: ProcessingErrorException
if there is an error while converting the string
Throws: RemoteException
if there is a communications or systems failure

All Examples  All WebLogic Enterprise Connectivity Examples This Package