Annotation Interface EnableIntegrationGraphController
@Target(TYPE)
@Retention(RUNTIME)
@Inherited
@Import(IntegrationGraphControllerRegistrar.class)
public @interface EnableIntegrationGraphController
Enables the
 
IntegrationGraphController if
 org.springframework.web.servlet.DispatcherServlet or
 org.springframework.web.reactive.DispatcherHandler is present in the classpath.- Since:
 - 4.3
 - Author:
 - Artem Bilan
 - See Also:
 
- 
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionString[]Specify allowed origin URLs for cross-origin request handling.Specify the Request Mapping path for theIntegrationGraphController.Specify the Request Mapping path for theIntegrationGraphController. 
- 
Element Details
- 
value
Specify the Request Mapping path for theIntegrationGraphController. Defaults to "/integration".- Returns:
 - The Request Mapping path for the
 
IntegrationGraphController 
- Default:
 "/integration"
 - 
path
Specify the Request Mapping path for theIntegrationGraphController. Defaults to "/integration".- Returns:
 - The Request Mapping path for the
 
IntegrationGraphController 
- Default:
 "/integration"
 - 
allowedOrigins
String[] allowedOriginsSpecify allowed origin URLs for cross-origin request handling. Only allows GET operations.- Returns:
 - the URLs.
 - Since:
 - 4.3.5
 
- Default:
 {}
 
 -