All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openapitools.codegen.CodegenComposedSchemas Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
/*
 * Copyright 2018 OpenAPI-Generator Contributors (https://openapi-generator.tech)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.openapitools.codegen;

import java.util.*;

public class CodegenComposedSchemas {
    private List allOf;
    private List oneOf;
    private List anyOf;
    private CodegenProperty not = null;

    public CodegenComposedSchemas(List allOf, List oneOf, List anyOf, CodegenProperty not) {
        this.allOf = allOf;
        this.oneOf = oneOf;
        this.anyOf = anyOf;
        this.not = not;
    }

    public List getAllOf() {
        return allOf;
    }

    public List getOneOf() {
        return oneOf;
    }

    public List getAnyOf() {
        return anyOf;
    }

    public CodegenProperty getNot() {
        return not;
    }

    public void setAllOf(List allOf) {
        this.allOf = allOf;
    }

    public void setOneOf(List oneOf) {
        this.oneOf = oneOf;
    }

    public void setAnyOf(List anyOf) {
        this.anyOf = anyOf;
    }

    public void setNot(CodegenProperty not) {
        this.not = not;
    }

    public String toString() {
        final StringBuilder sb = new StringBuilder("CodegenComposedSchemas{");
        sb.append("oneOf=").append(oneOf);
        sb.append(", anyOf=").append(anyOf);
        sb.append(", allOf=").append(allOf);
        sb.append(", not=").append(not);
        sb.append('}');
        return sb.toString();
    }

    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        CodegenComposedSchemas that = (CodegenComposedSchemas) o;
        return Objects.equals(oneOf, that.oneOf) &&
                Objects.equals(anyOf, that.anyOf) &&
                Objects.equals(allOf, that.allOf) &&
                Objects.equals(not, that.not);
    }

    @Override
    public int hashCode() {
        return Objects.hash(oneOf, anyOf, allOf, not);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy