org.objectweb.easybeans.tests.common.ejbs.stateless
Interface ItfMethodInterceptorTestRemote<T>

Type Parameters:
T - list type
All Known Implementing Classes:
SLSBMethodInterceptorTest

public interface ItfMethodInterceptorTestRemote<T>

Is used to test if the container call the method interceptors in order.

Author:
Gisele Pinheiro Souza, Eduardo Studzinski E. de Castro

Field Summary
static java.lang.Integer ORDER
          The number that each method will add in the array.
 
Method Summary
 boolean checkPostbackInterceptors()
          Verifies the list status.
 java.util.List<T> withFiveMethodInterceptors(java.util.List<T> par)
          Apends an element in the par.
 java.util.List<T> withFiveMethodInterceptorsInverse(java.util.List<T> par)
          Appends an element in the par.
 java.util.List<T> withOneMethodInterceptor(java.util.List<T> par)
          Appends an element in the par.
 java.util.List<T> withoutInterceptor(java.util.List<T> par)
          Appends an element in the par.
 java.util.List<T> withPrivateInterceptors(java.util.List<T> par)
          Appends an element in the par.
 java.util.List<T> withPrivateProtectedPublicInterceptors(java.util.List<T> par)
          Appends an element in the par.
 java.util.List<T> withProtectedInterceptors(java.util.List<T> par)
          Appends an element in the par.
 java.util.List<T> withTwoMethodInterceptors(java.util.List<T> par)
          Appends an element in the par.
 

Field Detail

ORDER

static final java.lang.Integer ORDER
The number that each method will add in the array.

Method Detail

withoutInterceptor

java.util.List<T> withoutInterceptor(java.util.List<T> par)
Appends an element in the par.

Parameters:
par - list used to append the value
Returns:
list updated

withOneMethodInterceptor

java.util.List<T> withOneMethodInterceptor(java.util.List<T> par)
Appends an element in the par. Also,the interceptor appends an element with its value.

Parameters:
par - list used to apend the value
Returns:
list updated

withTwoMethodInterceptors

java.util.List<T> withTwoMethodInterceptors(java.util.List<T> par)
Appends an element in the par. Also,each interceptor appends an element with its value.

Parameters:
par - list used to apend the value
Returns:
list updated

withFiveMethodInterceptors

java.util.List<T> withFiveMethodInterceptors(java.util.List<T> par)
Apends an element in the par. Also,each interceptor appends an element with its value.

Parameters:
par - list used to apend the value
Returns:
list updated

withFiveMethodInterceptorsInverse

java.util.List<T> withFiveMethodInterceptorsInverse(java.util.List<T> par)
Appends an element in the par. Also,each interceptor appends an element with its value.

Parameters:
par - list used to append the value
Returns:
list updated

checkPostbackInterceptors

boolean checkPostbackInterceptors()
Verifies the list status.

Returns:
true if the list is properly configured to use.

withPrivateProtectedPublicInterceptors

java.util.List<T> withPrivateProtectedPublicInterceptors(java.util.List<T> par)
Appends an element in the par. Also,each interceptor appends an element with its value.

Parameters:
par - list used to append the value
Returns:
list updated

withPrivateInterceptors

java.util.List<T> withPrivateInterceptors(java.util.List<T> par)
Appends an element in the par. Also, each interceptor appends an element with its value.

Parameters:
par - list used to append the value
Returns:
list updated

withProtectedInterceptors

java.util.List<T> withProtectedInterceptors(java.util.List<T> par)
Appends an element in the par. Also,each interceptor appends an element with its value.

Parameters:
par - list used to append the value
Returns:
list updated