Skip navigation links
A B C E F G I M O R W 

A

arg(int, Object) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder
 

B

build() - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder
 
buildAndExpand(Object...) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder
 

C

controller(Class<T>) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Return a "mock" controller instance.

E

encode() - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder
Use this method only if you need to apply strong encoding to expanded URI variables by quoting all characters with reserved meaning.

F

FrameworkController - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Indicates that an annotated class is a "Framework Controller" (default MVC controller).
frameworkControllerHandlerMapping() - Method in class org.broadleafcommerce.frameworkmapping.autoconfigure.FrameworkMappingAutoConfiguration
 
FrameworkControllerScan - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
By default, scan the locations specified in FrameworkControllerScan.value() or FrameworkControllerScan.basePackages() or FrameworkControllerScan.basePackageClasses() for FrameworkRestController and FrameworkController so that their FrameworkMappings will get included in FrameworkMappingHandlerMapping to provide default implementations of web endpoints.
FrameworkDeleteMapping - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Annotation for mapping HTTP DELETE requests onto specific handler methods.
FrameworkGetMapping - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Annotation for mapping HTTP GET requests onto specific handler methods.
FrameworkMapping - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
This annotation behaves exactly like RequestMapping except it is used inside FrameworkController and FrameworkRestController controllers.
FrameworkMappingAutoConfiguration - Class in org.broadleafcommerce.frameworkmapping.autoconfigure
Main Boot auto configuration for framework mappings.
FrameworkMappingAutoConfiguration() - Constructor for class org.broadleafcommerce.frameworkmapping.autoconfigure.FrameworkMappingAutoConfiguration
 
FrameworkMappingHandlerMapping - Class in org.broadleafcommerce.frameworkmapping
HandlerMapping to find and map FrameworkMappings inside FrameworkController and FrameworkRestController classes.
FrameworkMappingHandlerMapping() - Constructor for class org.broadleafcommerce.frameworkmapping.FrameworkMappingHandlerMapping
 
FrameworkMvcUriComponentsBuilder - Class in org.broadleafcommerce.frameworkmapping
This class has been copied from spring-webmvc:5.0.8-RELEASE in order to provide URI building functionality for FrameworkMapping annotations.
FrameworkMvcUriComponentsBuilder(UriComponentsBuilder) - Constructor for class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Default constructor.
FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder - Class in org.broadleafcommerce.frameworkmapping
 
FrameworkMvcUriComponentsBuilder.MethodInvocationInfo - Interface in org.broadleafcommerce.frameworkmapping
 
FrameworkPatchMapping - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Annotation for mapping HTTP PATCH requests onto specific handler methods.
FrameworkPostMapping - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Annotation for mapping HTTP POST requests onto specific handler methods.
FrameworkPutMapping - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Annotation for mapping HTTP PUT requests onto specific handler methods.
FrameworkRestController - Annotation Type in org.broadleafcommerce.frameworkmapping.annotation
Indicates that an annotated class is a "Framework REST Controller" (default RESTful controller).
fromController(Class<?>) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Create a UriComponentsBuilder from the mapping of a controller class and current request information including Servlet mapping.
fromController(UriComponentsBuilder, Class<?>) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
An alternative to FrameworkMvcUriComponentsBuilder.fromController(Class) that accepts a UriComponentsBuilder representing the base URL.
fromMappingName(String) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Create a URL from the name of a Spring MVC controller method's request mapping.
fromMappingName(UriComponentsBuilder, String) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
An alternative to FrameworkMvcUriComponentsBuilder.fromMappingName(String) that accepts a UriComponentsBuilder representing the base URL.
fromMethod(Class<?>, Method, Object...) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Create a UriComponentsBuilder from the mapping of a controller method and an array of method argument values.
fromMethod(UriComponentsBuilder, Class<?>, Method, Object...) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
An alternative to FrameworkMvcUriComponentsBuilder.fromMethod(Class, Method, Object...) that accepts a UriComponentsBuilder representing the base URL.
fromMethodCall(Object) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Create a UriComponentsBuilder by invoking a "mock" controller method.
fromMethodCall(UriComponentsBuilder, Object) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
An alternative to FrameworkMvcUriComponentsBuilder.fromMethodCall(Object) that accepts a UriComponentsBuilder representing the base URL.
fromMethodName(Class<?>, String, Object...) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Create a UriComponentsBuilder from the mapping of a controller method and an array of method argument values.
fromMethodName(UriComponentsBuilder, Class<?>, String, Object...) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
An alternative to FrameworkMvcUriComponentsBuilder.fromMethodName(Class, String, Object...) that accepts a UriComponentsBuilder representing the base URL.

G

getArgumentValues() - Method in interface org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodInvocationInfo
 
getControllerMethod() - Method in interface org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodInvocationInfo
 
getControllerType() - Method in interface org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodInvocationInfo
 
getMappingForMethod(Method, Class<?>) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMappingHandlerMapping
 

I

isHandler(Class<?>) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMappingHandlerMapping
See AopUtils and ClassUtils.

M

MethodArgumentBuilder(Class<?>, Method) - Constructor for class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder
 
MethodArgumentBuilder(UriComponentsBuilder, Class<?>, Method) - Constructor for class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder.MethodArgumentBuilder
 
MVC_URI_COMPONENTS_CONTRIBUTOR_BEAN_NAME - Static variable in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Well-known name for the CompositeUriComponentsContributor object in the bean factory.

O

on(Class<T>) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Return a "mock" controller instance.
org.broadleafcommerce.frameworkmapping - package org.broadleafcommerce.frameworkmapping
 
org.broadleafcommerce.frameworkmapping.annotation - package org.broadleafcommerce.frameworkmapping.annotation
 
org.broadleafcommerce.frameworkmapping.autoconfigure - package org.broadleafcommerce.frameworkmapping.autoconfigure
 

R

relativeTo(UriComponentsBuilder) - Static method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
Create an instance of this class with a base URL.
REQUEST_MAPPING_ORDER - Static variable in class org.broadleafcommerce.frameworkmapping.FrameworkMappingHandlerMapping
 

W

withController(Class<?>) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
withMappingName(String) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
withMethod(Class<?>, Method, Object...) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
withMethodCall(Object) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
withMethodName(Class<?>, String, Object...) - Method in class org.broadleafcommerce.frameworkmapping.FrameworkMvcUriComponentsBuilder
A B C E F G I M O R W 
Skip navigation links

Copyright © 2019. All rights reserved.