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

org.springframework.data.gemfire.config.annotation.EnableHttpService Maven / Gradle / Ivy

There is a newer version: 2.3.9.RELEASE
Show newest version
/*
 * Copyright 2012-2020 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
 *
 *      https://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.springframework.data.gemfire.config.annotation;

import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

/**
 * The {@link EnableHttpService} annotation marks a Spring {@link Configuration @Configuration}
 * annotated {@link Class} to configure and enable Pivotal GemFire/Apache Geode's embedded HTTP service.
 *
 * By using this {@link Annotation}, this enables the embedded HTTP services like Pulse, the Management REST API
 * and the Developer REST API on startup.
 *
 * However, the embedded Pivotal GemFire/Apache Geode HTTP service and all dependent services (e.g. Pulse)
 * can be enabled/disabled externally in {@literal application.properties} with
 * the {@literal spring.data.gemfire.service.http.enabled} property even when this {@link Annotation} is present,
 * thereby serving as a toggle.
 *
 * @author John Blum
 * @see java.lang.annotation.Annotation
 * @see org.springframework.context.annotation.Import
 * @see org.springframework.data.gemfire.config.annotation.HttpServiceConfiguration
 * @see Developing REST Applications for Apache Geode
 * @since 1.9.0
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Import(HttpServiceConfiguration.class)
@UsesGemFireProperties
@SuppressWarnings("unused")
public @interface EnableHttpService {

	/**
	 * If set, then the Pivotal GemFire member binds the embedded HTTP service to the specified address.
	 * If this property is not set but the HTTP service is enabled using {@literal http-service-port},
	 * then Pivotal GemFire binds the HTTP service to the member’s local address. Used by the Pivotal GemFire Pulse Web application
	 * and the Developer REST API service.
	 *
	 * Defaults to unset.
	 *
	 * Use the {@literal spring.data.gemfire.service.http.bind-address} property in {@literal application.properties}.
	 */
	String bindAddress() default "";

	/**
	 * If non-zero, then Pivotal GemFire starts an embedded HTTP service that listens on this port. The HTTP service
	 * is used to host the Pivotal GemFire Pulse Web application and the development REST API service. If you are hosting
	 * the Pulse web app on your own Web server and are not using the Development REST API service, then disable
	 * this embedded HTTP service by setting this property to zero. Ignored if {@literal jmx-manager}
	 * and {@literal start-dev-rest-api} are both set to {@literal false}.
	 *
	 * Defaults to {@literal 7070}.
	 *
	 * Use the {@literal spring.data.gemfire.service.http.port} property in {@literal application.properties}.
	 */
	int port() default HttpServiceConfiguration.DEFAULT_HTTP_SERVICE_PORT;

	/**
	 * Boolean indicating whether to require authentication for HTTP service connections. If this property is not set,
	 * then Pivotal GemFire uses the value of {@literal cluster-ssl-require-authentication} to determine whether HTTP service
	 * connections require authentication.
	 *
	 * To enable SSL communications for the HTTP service, use the {@link EnableSsl} annotation and set the
	 * {@link EnableSsl#components()} to contain
	 * {@link org.springframework.data.gemfire.config.annotation.EnableSsl.Component#HTTP}.
	 *
	 * Defaults to {@literal false}.
	 *
	 * Use the {@literal spring.data.gemfire.service.http.ssl-require-authentication} property
	 * in {@literal application.properties}.
	 */
	boolean sslRequireAuthentication() default false;

	/**
	 * If set to {@literal true}, then the Developer REST API service will be started when the cache is created.
	 * The REST service can be configured using {@literal http-service-bind-address} and {@literal http-service-port}
	 * Pivotal GemFire/Apache Geode System Properties.
	 *
	 * Defaults to {@literal false}.
	 *
	 * Use the {@literal spring.data.gemfire.service.http.dev-rest-api.start} property
	 * in {@literal application.properties}.
	 */
	boolean startDeveloperRestApi() default false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy