
com.mercateo.common.rest.schemagen.RestJsonSchemaGeneratorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common.rest.schemagen Show documentation
Show all versions of common.rest.schemagen Show documentation
Jersey add-on for dynamic link and schema building
package com.mercateo.common.rest.schemagen;
import org.glassfish.hk2.api.Factory;
public class RestJsonSchemaGeneratorFactory implements Factory {
@Override
public JsonSchemaGenerator provide() {
return new RestJsonSchemaGenerator();
}
@Override
public void dispose(JsonSchemaGenerator jsonSchemaGenerator) {
// Nothing to dispose.
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy