Class PlanConversionFunction
java.lang.Object
com.atlassian.bamboo.plugins.rest.plan.PlanConversionFunction
- All Implemented Interfaces:
RestConversionFunction<ImmutableChain,
RestPlanConfig>
@Component
public class PlanConversionFunction
extends Object
implements RestConversionFunction<ImmutableChain,RestPlanConfig>
-
Constructor Summary
ConstructorDescriptionPlanConversionFunction
(LinkService linkService, PaginationService paginationService, StageConversionFunction stageConversionFunction, StageService stageService) -
Method Summary
Modifier and TypeMethodDescription@NotNull RestPlanConfig
apply
(@NotNull ImmutableChain plan, @NotNull Expansion expansion, @NotNull javax.ws.rs.core.UriInfo uriInfo) Transforms a domain object to aAbstractRestModel
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.atlassian.bamboo.plugins.rest.common.RestConversionFunction
toFunction
-
Constructor Details
-
PlanConversionFunction
@Inject public PlanConversionFunction(LinkService linkService, PaginationService paginationService, StageConversionFunction stageConversionFunction, StageService stageService)
-
-
Method Details
-
apply
@NotNull public @NotNull RestPlanConfig apply(@NotNull @NotNull ImmutableChain plan, @NotNull @NotNull Expansion expansion, @NotNull @NotNull javax.ws.rs.core.UriInfo uriInfo) Description copied from interface:RestConversionFunction
Transforms a domain object to aAbstractRestModel
. The resource will include links.- Specified by:
apply
in interfaceRestConversionFunction<ImmutableChain,
RestPlanConfig> - Parameters:
plan
- The domain object to transformexpansion
- The expansion to use when transforming the objecturiInfo
- URI info from the request- Returns:
- a RestResource
-