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

hydra.workflow.HydraSchemaSpec Maven / Gradle / Ivy

package hydra.workflow;

import java.io.Serializable;

/**
 * The specification of a Hydra schema, provided as a set of modules and a distinguished type
 */
public class HydraSchemaSpec implements Serializable {
  public static final hydra.core.Name NAME = new hydra.core.Name("hydra/workflow.HydraSchemaSpec");
  
  /**
   * The modules to include in the schema graph
   */
  public final java.util.List> modules;
  
  /**
   * The name of the top-level type; all data which passes through the workflow will be instances of this type
   */
  public final hydra.core.Name typeName;
  
  public HydraSchemaSpec (java.util.List> modules, hydra.core.Name typeName) {
    this.modules = modules;
    this.typeName = typeName;
  }
  
  @Override
  public boolean equals(Object other) {
    if (!(other instanceof HydraSchemaSpec)) {
      return false;
    }
    HydraSchemaSpec o = (HydraSchemaSpec) (other);
    return modules.equals(o.modules) && typeName.equals(o.typeName);
  }
  
  @Override
  public int hashCode() {
    return 2 * modules.hashCode() + 3 * typeName.hashCode();
  }
  
  public HydraSchemaSpec withModules(java.util.List> modules) {
    return new HydraSchemaSpec(modules, typeName);
  }
  
  public HydraSchemaSpec withTypeName(hydra.core.Name typeName) {
    return new HydraSchemaSpec(modules, typeName);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy