Oracle Corporation

com.bea.wlcp.wlng.api.plugin.context
Interface ContextTranslator


public interface ContextTranslator

This interface defines the method a context translator must implement. It is used to put a "complex" parameter into the current request context.

Copyright © 2008 Oracle Corporation Systems, Inc. All Rights Reserved.

Method Summary
 void translate(Object param, ContextInfo info)
          Given the specified parameter 'param', put any useful key/value pair information into the 'info' map that will end up in the current RequestContext.
 

Method Detail

translate

public void translate(Object param,
                      ContextInfo info)
Given the specified parameter 'param', put any useful key/value pair information into the 'info' map that will end up in the current RequestContext.

Parameters:
param - The parameter annotated with @ContextTranslator
info - The map used by the current RequestContext

Oracle Corporation