Package org.glassfish.jersey.server.wadl
Interface WadlGenerator
- All Known Implementing Classes:
WadlGeneratorApplicationDoc
,WadlGeneratorGrammarsSupport
,WadlGeneratorImpl
,WadlGeneratorJAXBGrammarGenerator
,WadlGeneratorResourceDocSupport
public interface WadlGenerator
A WadlGenerator creates artifacts related to wadl. This is designed as an interface,
so that several implementations can decorate existing ones. One decorator could e.g. add
references to definitions within some xsd for existing representations.
Created on: Jun 16, 2008
Created on: Jun 16, 2008
- Author:
- Martin Grotzke (martin.grotzke at freiheit.com)
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic class
And internal storage object to store the grammar definitions and any type resolvers that are created along the way.static interface
Call back interface that the created external grammar can use to allow other parts of the code to attach the correct grammar information. -
Method Summary
Modifier and TypeMethodDescriptionvoid
attachTypes
(ApplicationDescription description) Process the elements in the WADL definition to attach schema types as required.Perform any post create functions such as generating grammars.createParam
(Resource r, ResourceMethod m, Parameter p) createRequestRepresentation
(Resource r, ResourceMethod m, MediaType mediaType) createResource
(Resource r, String path) The jaxb context path that is used when the generated wadl application is marshalled to a file.void
init()
Invoked before all methods related to wadl-building are invoked.void
setWadlGeneratorDelegate
(WadlGenerator delegate) Sets the delegate that is decorated by this wadl generator.
-
Method Details
-
setWadlGeneratorDelegate
Sets the delegate that is decorated by this wadl generator. Is invoked directly after this generator is instantiated beforeinit()
or any setter method is invoked.- Parameters:
delegate
- the wadl generator to decorate
-
init
Invoked before all methods related to wadl-building are invoked. This method is used in a decorator like manner, and therefore has to invokethis.delegate.init()
.- Throws:
IllegalStateException
jakarta.xml.bind.JAXBException
Exception
-
getRequiredJaxbContextPath
String getRequiredJaxbContextPath()The jaxb context path that is used when the generated wadl application is marshalled to a file. This method is used in a decorator like manner. The result return the path (or a colon-separated list of package names) containing jaxb-beans that are added to wadl elements by this WadlGenerator, additionally to the context path of the decorated WadlGenerator (set bysetWadlGeneratorDelegate(WadlGenerator)
.
If you do not use custom jaxb beans, then simply return_delegate.getRequiredJaxbContextPath()
, otherwise return the delegate's #getRequiredJaxbContextPath() together with your required context path (separated by a colon):
_delegate.getRequiredJaxbContextPath() == null ? ${yourContextPath} : _delegate.getRequiredJaxbContextPath() + ":" + ${yourContextPath};
If you add the path for your custom jaxb beans, don't forget to add an ObjectFactory (annotated withXmlRegistry
) to this package.- Returns:
- simply the
getRequiredJaxbContextPath()
of the delegate or thegetRequiredJaxbContextPath() + ":" + ${yourContextPath}
.
-
createApplication
Application createApplication() -
createResources
Resources createResources() -
createResource
-
createMethod
-
createRequest
-
createRequestRepresentation
-
createResponses
-
createParam
-
createExternalGrammar
WadlGenerator.ExternalGrammarDefinition createExternalGrammar()Perform any post create functions such as generating grammars.- Returns:
- A map of extra files to the content of those file encoded in UTF-8
-
attachTypes
Process the elements in the WADL definition to attach schema types as required.- Parameters:
description
- The root description used to resolve these entries
-