Interface ConfigurationOptionsEndpoint

  • All Known Implementing Classes:
    ConfigurationOptionsEndpointImpl

    @Path("configuration-options")
    @Consumes("application/json")
    @Produces("application/json")
    public interface ConfigurationOptionsEndpoint
    Contains endpoints for getting available options and validating option values.
    Author:
    Jesse Sightler
    • Method Detail

      • getAllOptions

        @GET
        List<org.jboss.windup.config.ConfigurationOption> getAllOptions()
        Gets a list of options available from the server.
      • validateOption

        @POST
        @Path("validate-option")
        org.jboss.windup.config.ValidationResult validateOption​(@QueryParam("analysisContextId")
                                                                Long analysisContextId,
                                                                AdvancedOption advancedOption)
        Validates the provided option and returns the result.