org.apache.camel.component.http.HttpMethods Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.camel.component.http;
import java.net.URI;
import org.apache.camel.Exchange;
import org.apache.camel.Expression;
import org.apache.camel.builder.ExpressionBuilder;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpHead;
import org.apache.http.client.methods.HttpOptions;
import org.apache.http.client.methods.HttpPatch;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.methods.HttpRequestBase;
import org.apache.http.client.methods.HttpTrace;
public enum HttpMethods implements Expression {
GET(HttpGet.class),
PATCH(HttpPatch.class),
POST(HttpPost.class),
PUT(HttpPut.class),
DELETE(HttpDelete.class),
HEAD(HttpHead.class),
OPTIONS(HttpOptions.class),
TRACE(HttpTrace.class);
final boolean entity;
HttpMethods(Class extends HttpRequestBase> clazz) {
entity = HttpEntityEnclosingRequestBase.class.isAssignableFrom(clazz);
}
public HttpRequestBase createMethod(final String url) {
switch (this) {
case GET:
return new HttpGet(url);
case PATCH:
return new HttpPatch(url);
case POST:
return new HttpPost(url);
case PUT:
return new HttpPut(url);
case DELETE:
return new HttpDelete(url);
case HEAD:
return new HttpHead(url);
case OPTIONS:
return new HttpOptions(url);
case TRACE:
return new HttpTrace(url);
default:
throw new RuntimeException("no such method " + this);
}
}
public HttpRequestBase createMethod(final URI uri) {
switch (this) {
case GET:
return new HttpGet(uri);
case PATCH:
return new HttpPatch(uri);
case POST:
return new HttpPost(uri);
case PUT:
return new HttpPut(uri);
case DELETE:
return new HttpDelete(uri);
case HEAD:
return new HttpHead(uri);
case OPTIONS:
return new HttpOptions(uri);
case TRACE:
return new HttpTrace(uri);
default:
throw new RuntimeException("no such method " + this);
}
}
public final boolean isEntityEnclosing() {
return entity;
}
@Override
public T evaluate(Exchange exchange, Class type) {
return ExpressionBuilder.constantExpression(name()).evaluate(exchange, type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy