org.openorb.orb.test.rmi.primitive
Interface RemoteEcho

All Superinterfaces:
java.rmi.Remote
All Known Implementing Classes:
PrimitiveTest.EchoImpl

public interface RemoteEcho
extends java.rmi.Remote

This interface provides primitive test operations.

Author:
Jerome Daniel

Method Summary
 boolean[] echo_boolean_array(boolean[] val)
          Echo a boolean array type.
 boolean echo_boolean(boolean val)
          Echo a boolean type.
 byte[] echo_byte_array(byte[] val)
          Echo a byte array type.
 byte echo_byte(byte val)
          Echo a byte type.
 char[] echo_char_array(char[] val)
          Echo a char array type.
 char echo_char(char val)
          Echo a char type.
 double[] echo_double_array(double[] val)
          Echo a double array type.
 double echo_double(double val)
          Echo a double type.
 float[] echo_float_array(float[] val)
          Echo a float array type.
 float echo_float(float val)
          Echo a float type.
 int[] echo_int_array(int[] val)
          Echo a int array type.
 int echo_int(int val)
          Echo a int type.
 long[] echo_long_array(long[] val)
          Echo a long array type.
 long echo_long(long val)
          Echo a long type.
 short[] echo_short_array(short[] val)
          Echo a short array type.
 short echo_short(short val)
          Echo a short type.
 void echo_void()
          Echo nothing.
 

Method Detail

echo_void

void echo_void()
               throws java.rmi.RemoteException
Echo nothing.

Throws:
java.rmi.RemoteException - When an error occurs.

echo_boolean

boolean echo_boolean(boolean val)
                     throws java.rmi.RemoteException
Echo a boolean type.

Parameters:
val - A boolean value.
Returns:
The boolean value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_byte

byte echo_byte(byte val)
               throws java.rmi.RemoteException
Echo a byte type.

Parameters:
val - A byte value.
Returns:
The byte value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_char

char echo_char(char val)
               throws java.rmi.RemoteException
Echo a char type.

Parameters:
val - A char value.
Returns:
The char value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_short

short echo_short(short val)
                 throws java.rmi.RemoteException
Echo a short type.

Parameters:
val - A short value.
Returns:
The short value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_float

float echo_float(float val)
                 throws java.rmi.RemoteException
Echo a float type.

Parameters:
val - A float value.
Returns:
The float value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_double

double echo_double(double val)
                   throws java.rmi.RemoteException
Echo a double type.

Parameters:
val - A double value.
Returns:
The double value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_int

int echo_int(int val)
             throws java.rmi.RemoteException
Echo a int type.

Parameters:
val - A int value.
Returns:
The int value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_long

long echo_long(long val)
               throws java.rmi.RemoteException
Echo a long type.

Parameters:
val - A long value.
Returns:
The long value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_boolean_array

boolean[] echo_boolean_array(boolean[] val)
                             throws java.rmi.RemoteException
Echo a boolean array type.

Parameters:
val - A boolean array value.
Returns:
The boolean array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_byte_array

byte[] echo_byte_array(byte[] val)
                       throws java.rmi.RemoteException
Echo a byte array type.

Parameters:
val - A byte array value.
Returns:
The byte array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_char_array

char[] echo_char_array(char[] val)
                       throws java.rmi.RemoteException
Echo a char array type.

Parameters:
val - A char array value.
Returns:
The char array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_short_array

short[] echo_short_array(short[] val)
                         throws java.rmi.RemoteException
Echo a short array type.

Parameters:
val - A short array value.
Returns:
The short array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_float_array

float[] echo_float_array(float[] val)
                         throws java.rmi.RemoteException
Echo a float array type.

Parameters:
val - A float array value.
Returns:
The float array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_double_array

double[] echo_double_array(double[] val)
                           throws java.rmi.RemoteException
Echo a double array type.

Parameters:
val - A double array value.
Returns:
The double array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_int_array

int[] echo_int_array(int[] val)
                     throws java.rmi.RemoteException
Echo a int array type.

Parameters:
val - A int array value.
Returns:
The int array value.
Throws:
java.rmi.RemoteException - When an error occurs.

echo_long_array

long[] echo_long_array(long[] val)
                       throws java.rmi.RemoteException
Echo a long array type.

Parameters:
val - A long array value.
Returns:
The long array value.
Throws:
java.rmi.RemoteException - When an error occurs.