org.openapitools.codegen.utils.OneOfImplementorAdditionalData Maven / Gradle / Ivy
package org.openapitools.codegen.utils;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.openapitools.codegen.CodegenConfig;
import org.openapitools.codegen.CodegenModel;
import org.openapitools.codegen.CodegenProperty;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class holds data to add to `oneOf` members. Let's consider this example:
*
* Foo:
* properties:
* x:
* oneOf:
* - $ref: "#/components/schemas/One
* - $ref: "#/components/schemas/Two
* y:
* type: string
* One:
* properties:
* z:
* type: string
* Two:
* properties:
* a:
* type: string
*
* In codegens that use this mechanism, `Foo` will become an interface and `One` will
* become its implementing class. This class carries all data necessary to properly modify
* the implementing class model. Specifically:
*
* * Interfaces that the implementing classes have to implement (in the example above, `One` and `Two` will implement `Foo`)
* * Properties that need to be added to implementing classes (as `Foo` is interface, the `y` property will get pushed
* to implementing classes `One` and `Two`)
* * Imports that need to be added to implementing classes (e.g. if type of property `y` needs a specific import, it
* needs to be added to `One` and `Two` because of the above point)
*/
public class OneOfImplementorAdditionalData {
private String implementorName;
private List additionalInterfaces = new ArrayList();
private List additionalProps = new ArrayList();
private List