com.ibm.mashups.proxy.ext
Interface CookieTransformerFactory


public interface CookieTransformerFactory

Factory which creates CookieTransformer instances. CookieTransformer factories can be registered in a CookieRule section of a proxy configuration.

Since:
9.0

Method Summary
 com.ibm.mashups.proxy.ext.CookieTransformer newCookieTransformer(java.net.URL url, java.util.Map<java.lang.String,java.lang.String> metadata)
          Creates a new CookieTransformer element which operates on the given URL for the given runtime context.
 

Method Detail

newCookieTransformer

com.ibm.mashups.proxy.ext.CookieTransformer newCookieTransformer(java.net.URL url,
                                                                 java.util.Map<java.lang.String,java.lang.String> metadata)
                                                                 throws java.io.IOException
Creates a new CookieTransformer element which operates on the given URL for the given runtime context.

Parameters:
url - URL the URL of the remote connection. Will not be null.
metadata - The the metadata settings in the configuration for this cookie transformer. Will not be null. May be empty.
Returns:
A CookieTransformer instance. Not null .
Throws:
java.io.IOException