All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gravitee.am.identityprovider.http.configuration.HttpResourceConfiguration Maven / Gradle / Ivy

There is a newer version: 4.6.0-alpha.2
Show newest version
/**
 * Copyright (C) 2015 The Gravitee team (http://gravitee.io)
 *
 * 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 io.gravitee.am.identityprovider.http.configuration;

import io.gravitee.common.http.HttpHeader;
import io.gravitee.common.http.HttpMethod;

import java.util.List;

/**
 * @author Titouan COMPIEGNE (titouan.compiegne at graviteesource.com)
 * @author GraviteeSource Team
 */
public class HttpResourceConfiguration {

    private String baseURL;
    private HttpMethod httpMethod;
    private List httpHeaders;
    private String httpBody;
    private List httpResponseErrorConditions;
    private HttpAuthResourcePathsConfiguration paths;

    public String getBaseURL() {
        return baseURL;
    }

    public void setBaseURL(String baseURL) {
        this.baseURL = baseURL;
    }

    public HttpMethod getHttpMethod() {
        return httpMethod;
    }

    public void setHttpMethod(HttpMethod httpMethod) {
        this.httpMethod = httpMethod;
    }

    public List getHttpHeaders() {
        return httpHeaders;
    }

    public void setHttpHeaders(List httpHeaders) {
        this.httpHeaders = httpHeaders;
    }

    public String getHttpBody() {
        return httpBody;
    }

    public void setHttpBody(String httpBody) {
        this.httpBody = httpBody;
    }

    public List getHttpResponseErrorConditions() {
        return httpResponseErrorConditions;
    }

    public void setHttpResponseErrorConditions(List httpResponseErrorConditions) {
        this.httpResponseErrorConditions = httpResponseErrorConditions;
    }

    public HttpAuthResourcePathsConfiguration getPaths() {
        return paths;
    }

    public void setPaths(HttpAuthResourcePathsConfiguration paths) {
        this.paths = paths;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy