public interface WadlGenerator
| Modifier and Type | Method and Description |
|---|---|
Application |
createApplication() |
Method |
createMethod(AbstractResource r,
AbstractResourceMethod m) |
Param |
createParam(AbstractResource r,
AbstractMethod m,
Parameter p) |
Request |
createRequest(AbstractResource r,
AbstractResourceMethod m) |
RepresentationType |
createRequestRepresentation(AbstractResource r,
AbstractResourceMethod m,
MediaType mediaType) |
Resource |
createResource(AbstractResource r,
java.lang.String path) |
Resources |
createResources() |
Response |
createResponse(AbstractResource r,
AbstractResourceMethod m) |
java.lang.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 by setWadlGeneratorDelegate(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): |
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.
|
void setWadlGeneratorDelegate(WadlGenerator delegate)
init() or any setter method is invoked.delegate - the wadl generator to decoratevoid init()
throws java.lang.Exception
this.delegate.init().java.lang.Exceptionjava.lang.String getRequiredJaxbContextPath()
setWadlGeneratorDelegate(WadlGenerator)._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 with XmlRegistry) to this package.getRequiredJaxbContextPath() of the delegate or the
getRequiredJaxbContextPath() + ":" + ${yourContextPath}.Application createApplication()
Resources createResources()
Resource createResource(AbstractResource r, java.lang.String path)
Method createMethod(AbstractResource r, AbstractResourceMethod m)
Request createRequest(AbstractResource r, AbstractResourceMethod m)
RepresentationType createRequestRepresentation(AbstractResource r, AbstractResourceMethod m, MediaType mediaType)
Response createResponse(AbstractResource r, AbstractResourceMethod m)
Param createParam(AbstractResource r, AbstractMethod m, Parameter p)
Copyright © 2015 Oracle Corporation. All Rights Reserved.