DefaultIndexHasKeyConstraint.java

/*
 * SPDX-FileCopyrightText: none
 * SPDX-License-Identifier: CC0-1.0
 */

package gov.nist.secauto.metaschema.core.model.constraint.impl;

import gov.nist.secauto.metaschema.core.datatype.markup.MarkupLine;
import gov.nist.secauto.metaschema.core.datatype.markup.MarkupMultiline;
import gov.nist.secauto.metaschema.core.model.IAttributable;
import gov.nist.secauto.metaschema.core.model.constraint.IIndexHasKeyConstraint;
import gov.nist.secauto.metaschema.core.model.constraint.IKeyField;
import gov.nist.secauto.metaschema.core.model.constraint.ISource;

import java.util.List;
import java.util.Map;
import java.util.Set;

import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;

public final class DefaultIndexHasKeyConstraint
    extends AbstractKeyConstraint
    implements IIndexHasKeyConstraint {
  @NonNull
  private final String indexName;

  /**
   * Create a key reference constraint, which uses a set of key fields to build a
   * key to match against an index.
   *
   * @param id
   *          the optional identifier for the constraint
   * @param formalName
   *          the constraint's formal indexName or {@code null} if not provided
   * @param description
   *          the constraint's semantic description or {@code null} if not
   *          provided
   * @param source
   *          information about the constraint source
   * @param level
   *          the significance of a violation of this constraint
   * @param target
   *          the Metapath expression identifying the nodes the constraint targets
   * @param properties
   *          a collection of associated properties
   * @param indexName
   *          a reference to the indexName of the index
   * @param keyFields
   *          a list of key fields associated with the constraint
   * @param remarks
   *          optional remarks describing the intent of the constraint
   */
  @SuppressWarnings("PMD.ExcessiveParameterList")
  public DefaultIndexHasKeyConstraint(
      @Nullable String id,
      @Nullable String formalName,
      @Nullable MarkupLine description,
      @NonNull ISource source,
      @NonNull Level level,
      @NonNull String target,
      @NonNull Map<IAttributable.Key, Set<String>> properties,
      @NonNull String indexName,
      @NonNull List<IKeyField> keyFields,
      @Nullable MarkupMultiline remarks) {
    super(id, formalName, description, source, level, target, properties, keyFields, remarks);
    if (indexName.isBlank()) {
      throw new IllegalArgumentException("The index indexName must be a non-blank string");
    }
    this.indexName = indexName;
  }

  @Override
  public String getIndexName() {
    return indexName;
  }

}