Package org.apache.struts2.convention
Interface ConventionsService
- All Known Implementing Classes:
ConventionsServiceImpl
public interface ConventionsService
This interface defines the conventions that are used by the convention plugin. In most cases the methods on this class will provide the best default for any values and also handle locating overrides of the default via the annotations that are part of the plugin.
-
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.
-
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.- 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.- 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.- Parameters:
packageConfig
- The PackageConfig to get the result types for.- Returns:
- The result types or an empty Map of nothing is configured.
-