io.apicurio.datamodels.models.union.ObjectUnionValueImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apicurio-data-models Show documentation
Show all versions of apicurio-data-models Show documentation
Open Source API Design Studio
The newest version!
package io.apicurio.datamodels.models.union;
import com.fasterxml.jackson.databind.node.ObjectNode;
public class ObjectUnionValueImpl extends PrimitiveUnionValueImpl implements ObjectUnionValue {
public ObjectUnionValueImpl() {
super();
}
public ObjectUnionValueImpl(Object value) {
super((ObjectNode) value);
}
}