PageMixer demonstration with Servlet

pagemixer.filter
Class AuthFilter

java.lang.Object
  |
  +--jp.ne.dti.lares.foozy.pagemixer.mixer.Filter
        |
        +--jp.ne.dti.lares.foozy.pagemixer.mixer.FilterPipeline
              |
              +--pagemixer.filter.AuthFilter
All Implemented Interfaces:
AuthConstants, AuthKeys, jp.ne.dti.lares.foozy.pagemixer.mixer.Consumer

public class AuthFilter
extends jp.ne.dti.lares.foozy.pagemixer.mixer.FilterPipeline
implements AuthKeys

Composit filter consisting of filters related to authentication function.

This filter consists of below filters.

See main(java.lang.String[]) to use as stand-alone application.


Inner Class Summary
static class AuthFilter.Factory
          Factory for "AuthFilter".
 
Inner classes inherited from class jp.ne.dti.lares.foozy.pagemixer.mixer.Filter
jp.ne.dti.lares.foozy.pagemixer.mixer.Filter.Factory
 
Fields inherited from interface common.AuthKeys
KEY_FAREWELL, KEY_INVALID_PASSWORD, KEY_LOGIN, KEY_LOGIN_REQUEST, KEY_LOGIN_REQUIRED, KEY_LOGOUT_REQUEST, KEY_PASSWORD, KEY_USER_UNKNOWN, KEY_USERNAME, KEY_WELCOME
 
Fields inherited from interface common.AuthConstants
CLASS_ALREADY_LOGIN, CLASS_FAREWELL, CLASS_INVALID_PASSWORD, CLASS_LOGIN_REQUIRED, CLASS_NOT_YET_LOGIN, CLASS_USER_UNKNOWN, CLASS_USERNAME, CLASS_WELCOME, PARAM_LOGIN, PARAM_LOGIN_REQUEST, PARAM_LOGOUT_REQUEST, PARAM_PASSWORD, PARAM_USERNAME, REQUEST_FAREWELL, REQUEST_WELCOME, SESSION_LOGIN
 
Constructor Summary
AuthFilter()
          Create filter consisting of filters related to authentication function.
 
Method Summary
static void main(java.lang.String[] args)
          Invoke as stand-alone application.
 
Methods inherited from class jp.ne.dti.lares.foozy.pagemixer.mixer.FilterPipeline
add, add, add, addFactories, addFilters, consume, flush, push, push, push, pushFactories, pushFilters
 
Methods inherited from class jp.ne.dti.lares.foozy.pagemixer.mixer.Filter
addCleanup, clear, connectTo, getConsumer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AuthFilter

public AuthFilter()
Create filter consisting of filters related to authentication function.
Method Detail

main

public static void main(java.lang.String[] args)
Invoke as stand-alone application.
USAGE:java pagemixer.filter.AuthFilter InputFilename [NameOfLoginUser]

Please see description of pagemixer.filter about class path requirement to execute this class.


PageMixer demonstration with Servlet