Package org.apache.struts2.convention
Class ConventionsServiceImpl
java.lang.Object
org.apache.struts2.convention.ConventionsServiceImpl
- All Implemented Interfaces:
ConventionsService
This class is the implementation of the ConventionsService
interface and provides all of the defaults and annotation handling.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondetermineResultPath
(Class<?> actionClass) Locates the result location from annotations on the action class or the package or returns the default if no annotations are present.determineResultPath
(ActionConfig actionConfig) Delegates to the other method but first looks up the Action's class using the given class name.getResultTypesByExtension
(PackageConfig packageConfig) Returns a mapping between the result type strings and theResultTypeConfig
instances based on thePackageConfig
given.
-
Constructor Details
-
ConventionsServiceImpl
Constructs a new instance.- Parameters:
resultPath
- The result path that is configured in the Struts configuration files using the constant name of struts.convention.result.path.
-
-
Method Details
-
determineResultPath
Locates the result location from annotations on the action class or the package or returns the default if no annotations are present.- Specified by:
determineResultPath
in interfaceConventionsService
- Parameters:
actionClass
- The action class.- Returns:
- The result location if it is set in the annotations. Otherwise, the default result location is returned.
-
determineResultPath
Delegates to the other method but first looks up the Action's class using the given class name.- Specified by:
determineResultPath
in interfaceConventionsService
- Parameters:
actionConfig
- (Optional) The configuration for the action that the result is being built for or null if the default result path is needed.- Returns:
- The result location if it is set in the annotations for the class of the ActionConfig. Otherwise, the default result location is returned. If null is passed in, the default is returned,
-
getResultTypesByExtension
Returns a mapping between the result type strings and theResultTypeConfig
instances based on thePackageConfig
given.- Specified by:
getResultTypesByExtension
in interfaceConventionsService
- Parameters:
packageConfig
- The PackageConfig to get the result types for.- Returns:
- The result types or an empty Map of nothing is configured.
-