Uses of Interface
adams.flow.dropwizard.RESTPlugin
-
Packages that use RESTPlugin Package Description adams.flow.dropwizard adams.flow.dropwizard.echo -
-
Uses of RESTPlugin in adams.flow.dropwizard
Classes in adams.flow.dropwizard that implement RESTPlugin Modifier and Type Class Description class
AbstractRESTPlugin
Ancestor for REST plugins.class
AbstractRESTPluginWithDatabaseConnection
Ancestor for REST plugins that require a database connection.class
AbstractRESTPluginWithFlowContext
Ancestor for REST plugins that require a flow context.Fields in adams.flow.dropwizard declared as RESTPlugin Modifier and Type Field Description protected RESTPlugin[]
GenericServer. m_Plugins
the plugins that make up the server.Methods in adams.flow.dropwizard that return RESTPlugin Modifier and Type Method Description protected RESTPlugin[]
GenericServer. getDefaultPlugins()
Returns the default plugins to use.RESTPlugin[]
GenericServer. getPlugins()
Returns the REST plugins in use.Methods in adams.flow.dropwizard with parameters of type RESTPlugin Modifier and Type Method Description void
GenericServer. configurePlugins(RESTPlugin[] plugins)
For configuring the plugins, e.g., setting the flow context.static String
RESTUtils. getAdditionalInformation(RESTPlugin plugin)
Generates information about the plugin, to be used for the information return byAdditionalInformationHandler
.void
GenericServer. setPlugins(RESTPlugin[] value)
Sets the REST plugins to use. -
Uses of RESTPlugin in adams.flow.dropwizard.echo
Classes in adams.flow.dropwizard.echo that implement RESTPlugin Modifier and Type Class Description class
Echo
Simple echo of the input.
Based on code from here:
https://github.com/zalacer/projects-tn/blob/master/JAX-RSdemo1/src/main/java/tn/HelloWorld.java
-