com.reprezen.genflow.openapi3.doc.Activation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi3-doc Show documentation
Show all versions of openapi3-doc Show documentation
RepreZen Documentation GenTemplate for OpenAPI v3 Models
The newest version!
package com.reprezen.genflow.openapi3.doc;
import com.reprezen.genflow.openapi3.doc.RecursionHelper;
@SuppressWarnings("all")
public class Activation implements AutoCloseable {
private final RecursionHelper helper;
private final Object obj;
public Activation(final Object obj, final RecursionHelper helper) {
this.helper = helper;
this.obj = obj;
helper.activate(obj);
}
@Override
public void close() {
this.helper.deactivate(this.obj);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy