Package org.jboss.gm.analyzer.alignment
Interface AlignmentService.RequestCustomizer
-
- All Known Implementing Classes:
DependencyExclusionCustomizer
- Enclosing interface:
- AlignmentService
public static interface AlignmentService.RequestCustomizerMeant to changeAlignmentService.Requestbefore it is handed to theAlignmentService- See Also:
DependencyExclusionCustomizer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AlignmentService.Requestcustomize(AlignmentService.Request request)Changes the given request before it is handed to the alignment service.default intorder()Integer.MIN_VALUEis the max order.
-
-
-
Method Detail
-
customize
AlignmentService.Request customize(AlignmentService.Request request)
Changes the given request before it is handed to the alignment service.- Parameters:
request- the request- Returns:
- the modified request
-
order
default int order()
Integer.MIN_VALUEis the max order. This means that if we have two services, and we want the first one to be invoked before the second, we would give the first one a value for order that is smaller than that of the second one (for example 0 and 10, respectively).- Returns:
- the order
-
-