Interface ProjectDescriptionCustomizer
- All Superinterfaces:
org.springframework.core.Ordered
- All Known Implementing Classes:
MetadataProjectDescriptionCustomizer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface ProjectDescriptionCustomizer
extends org.springframework.core.Ordered
Callback for customizing a
ProjectDescription
. Invoked with an order
of 0
by default, considering overriding getOrder()
to customize
this behaviour.- Author:
- Stephane Nicoll
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Method Summary
Modifier and TypeMethodDescriptionvoid
customize
(MutableProjectDescription description) Customize the project description.default int
getOrder()
-
Method Details
-
customize
Customize the project description.- Parameters:
description
- the project description to customize
-
getOrder
default int getOrder()- Specified by:
getOrder
in interfaceorg.springframework.core.Ordered
-