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

org.openmetadata.schema.CreateEntity Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
/*
 *  Copyright 2021 Collate
 *  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 org.openmetadata.schema;

import java.util.List;
import org.openmetadata.schema.type.EntityReference;
import org.openmetadata.schema.type.LifeCycle;
import org.openmetadata.schema.type.TagLabel;

@SuppressWarnings("unchecked")
public interface CreateEntity {
  String getName();

  String getDisplayName();

  String getDescription();

  default List getOwners() {
    return null;
  }

  default List getReviewers() {
    return null;
  }

  default List getTags() {
    return null;
  }

  default Object getExtension() {
    return null;
  }

  default String getDomain() {
    return null;
  }

  default List getDataProducts() {
    return null;
  }

  default LifeCycle getLifeCycle() {
    return null;
  }

   K withName(String name);

   K withDisplayName(String displayName);

   K withDescription(String description);

  default void setOwners(List owners) {}

  default void setTags(List tags) {
    /* no-op implementation to be overridden */
  }

  default  K withExtension(Object extension) {
    return (K) this;
  }

  default  K withDomain(String domain) {
    return (K) this;
  }

  default  K withLifeCycle(LifeCycle lifeCycle) {
    return (K) this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy