com.ocpsoft.rewrite.servlet.config.Method Maven / Gradle / Ivy
/*
* Copyright 2011 Lincoln Baxter, III
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.ocpsoft.rewrite.servlet.config;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import com.ocpsoft.rewrite.bind.Bindable;
import com.ocpsoft.rewrite.bind.Binding;
import com.ocpsoft.rewrite.bind.Bindings;
import com.ocpsoft.rewrite.bind.DefaultBindable;
import com.ocpsoft.rewrite.context.EvaluationContext;
import com.ocpsoft.rewrite.servlet.http.event.HttpServletRewrite;
/**
* Responsible for asserting on the {@link HttpServletRequest#getMethod()} property.
*
* @author Lincoln Baxter, III
*/
public class Method extends HttpCondition implements Bindable
{
private final HttpMethod method;
@SuppressWarnings("rawtypes")
private final DefaultBindable> bindable = new DefaultBindable();
private enum HttpMethod
{
GET, POST, HEAD, OPTIONS, PUT, DELETE, TRACE
}
private Method(final HttpMethod method)
{
this.method = method;
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of GET
*/
public static Method isGet()
{
return new Method(HttpMethod.GET);
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of POST
*/
public static Method isPost()
{
return new Method(HttpMethod.POST);
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of HEAD
*/
public static Method isHead()
{
return new Method(HttpMethod.HEAD);
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of OPTIONS
*/
public static Method isOptions()
{
return new Method(HttpMethod.OPTIONS);
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of PUT
*/
public static Method isPut()
{
return new Method(HttpMethod.PUT);
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of DELETE
*/
public static Method isDelete()
{
return new Method(HttpMethod.DELETE);
}
/**
* Return a {@link Method} condition that ensures the current {@link HttpServletRequest#getMethod()} is of TRACE
*/
public static Method isTrace()
{
return new Method(HttpMethod.TRACE);
}
@Override
public boolean evaluateHttp(final HttpServletRewrite event, final EvaluationContext context)
{
if (this.method.equals(HttpMethod.valueOf(event.getRequest().getMethod())))
{
Bindings.enqueueSubmission(event, context, bindable, method.name());
return true;
}
return false;
}
@Override
public Method bindsTo(final Binding binding)
{
bindable.bindsTo(binding);
return this;
}
@Override
public List getBindings()
{
return bindable.getBindings();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy