Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2019 JBoss Inc
*
* 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
*
* http://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 io.apicurio.datamodels.cmd.commands;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.apicurio.datamodels.Library;
import io.apicurio.datamodels.cmd.util.ModelUtils;
import io.apicurio.datamodels.compat.LoggerCompat;
import io.apicurio.datamodels.compat.MarshallCompat.NullableJsonNodeDeserializer;
import io.apicurio.datamodels.compat.NodeCompat;
import io.apicurio.datamodels.core.models.Document;
import io.apicurio.datamodels.core.models.NodePath;
import io.apicurio.datamodels.openapi.models.OasSchema;
import io.apicurio.datamodels.openapi.v3.models.Oas30Schema;
/**
* Allows changing the inheritance setting for a schema. This basically allows changing
* the usage of "anyOf", "allOf", etc. The algorithm for this command is as follows:
*
* - When switching from "none" to any inheritance mode, any existing properties of the
* schema will be wrapped in a new schema and added to the new inheritance mode
* - When switching from any inheritance mode back to "none", any properties in a wrapped
* schema will be unwrapped and added as properties
* - When switching from one inheritance mode to another, the list of schemas will be
* copied over with it (e.g. when going from "allOf" to "anyOf")
*
* Challenge: what impact will this have on undo/redo? Changes made to properties after
* this command is executed may be lost when this command is undone!
*
* @author [email protected]
*/
public class ChangeSchemaInheritanceCommand extends AbstractSchemaInhCommand {
public NodePath _schemaPath;
public String _newInheritanceType;
public String _oldInheritanceType;
@JsonDeserialize(contentUsing=NullableJsonNodeDeserializer.class)
public List