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

org.teiid.spring.annotations.RestConfiguration Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
/*
 * Copyright 2012-2014 the original author or authors.
 *
 * 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 org.teiid.spring.annotations;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * Defines configuration, like HTTP verbs and headers etc for REST based
 * connection. See method javadoc for more details. Alternatively, instead of
 * configuring values with this annotation, you define a bean name instead of
 * literal endpoint to make the REST call as user defined. See {@link JsonTable}
 *
 * For example:
 *
 * 
 * 
 * @Entity
 * @JsonTable(source=rest, endpoint="http://my.serviceprovider.com/service")
 * @RestConfiguration(method="GET", headersBean="myHeaders")
 * public class Person {
 *    @Id
 *    private int id;
 *
 *    @Column(name="FirstName")
 *    private String firstName;
 *
 *    @Column(name="LastName")
 *    private String lastName;
 *
 *    @Column(name="Age")
 *    private int age;
 *    ...
 * }
 * 
 * 
*/ @Target(TYPE) @Retention(RUNTIME) public @interface RestConfiguration { /** * HTTP Verb GET, PUT, PATCH, DELETE * * @return String */ String method() default "GET"; /** * Bean name which defines the HTTP Headers to be sent to the REST invocation. * For example when you want to handle HTTP Basic Authentication, you can do * like. * *
     * 
     * @Configuration
     * public class MyConfigClass {
* @Bean(name="myHeaders") * private HttpHeaders createHttpHeaders() * { * String notEncoded = "user:password"; * String encodedAuth = Base64.getEncoder().encodeToString(notEncoded.getBytes()); * HttpHeaders headers = new HttpHeaders(); * headers.setContentType(MediaType.APPLICATION_JSON); * headers.add("Authorization", "Basic " + encodedAuth); * return headers; * }
*} *
*
* * @return beanName */ String headersBean() default ""; /** * use streaming, i.e. the the read data will not copied, can only read once * * @return default true */ boolean stream() default true; /** * Define the bean name that supplies for the payload for REST based calls. This * bean MUST be of type {@link org.teiid.core.types.InputStreamFactory}. * * @return body */ String bodyBean() default ""; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy