Search in sources :

Example 1 with V10GResource

use of org.raml.jaxrs.generator.v10.V10GResource in project raml-for-jax-rs by mulesoft-labs.

the class RamlV10 method buildResourceV10.

public static void buildResourceV10(Object test, String raml, CodeContainer<TypeSpec> container, String name, String uri) throws IOException {
    Api api = buildApiV10(test, raml);
    CurrentBuild currentBuild = new CurrentBuild(api, ExtensionManager.createExtensionManager());
    currentBuild.constructClasses(new V10Finder(null, api));
    ResourceBuilder builder = new ResourceBuilder(currentBuild, new V10GResource(currentBuild, new GAbstractionFactory(), api.resources().get(0)), name, uri);
    builder.output(container);
}
Also used : ResourceBuilder(org.raml.jaxrs.generator.builders.resources.ResourceBuilder) CurrentBuild(org.raml.jaxrs.generator.CurrentBuild) GAbstractionFactory(org.raml.jaxrs.generator.GAbstractionFactory) V10GResource(org.raml.jaxrs.generator.v10.V10GResource) Api(org.raml.v2.api.model.v10.api.Api) V10Finder(org.raml.jaxrs.generator.v10.V10Finder)

Aggregations

CurrentBuild (org.raml.jaxrs.generator.CurrentBuild)1 GAbstractionFactory (org.raml.jaxrs.generator.GAbstractionFactory)1 ResourceBuilder (org.raml.jaxrs.generator.builders.resources.ResourceBuilder)1 V10Finder (org.raml.jaxrs.generator.v10.V10Finder)1 V10GResource (org.raml.jaxrs.generator.v10.V10GResource)1 Api (org.raml.v2.api.model.v10.api.Api)1