Package com.dotcms.repackage.org.tuckey.web.filters.urlrewrite

Examples of com.dotcms.repackage.org.tuckey.web.filters.urlrewrite.Condition


        forwardRule.setFrom( "^/example/url/condition/$" );
        forwardRule.setToType( "forward" );
        forwardRule.setTo( "/app/helloworld?browser=chrome" );
        forwardRule.setName( "ExampleTuckeyCondition" );
        //Create a Condition for this rule
        Condition condition = new Condition();
        condition.setName( "user-agent" );
        condition.setValue( "Chrome/*.*" );
        forwardRule.addCondition( condition );

        //Register the tuckey rewrite rule
        addRewriteRule( forwardRule );
    }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.org.tuckey.web.filters.urlrewrite.Condition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.