AzkabanJob.java

74 lines | 1.896 kB Blame History Raw Download
/*
 * Copyright 2017 LinkedIn Corp.
 *
 * 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 azkaban.project;

import azkaban.utils.Props;
import com.google.common.collect.ImmutableList;
import java.util.Collections;
import java.util.List;

public class AzkabanJob extends AzkabanNode {

  private final String type;

  private AzkabanJob(final String name, final String type, final Props props,
      final List<String> dependsOn) {
    super(name, props, dependsOn);
    this.type = type;
  }

  public String getType() {
    return this.type;
  }

  public static class AzkabanJobBuilder {

    private String name;
    private String type;
    private Props props;
    private List<String> dependsOn;

    public AzkabanJobBuilder setName(final String name) {
      this.name = name;
      return this;
    }

    public AzkabanJobBuilder setType(final String type) {
      this.type = type;
      return this;
    }

    public AzkabanJobBuilder setProps(final Props props) {
      this.props = props;
      return this;
    }

    public AzkabanJobBuilder setDependsOn(final List<String> dependsOn) {
      // A node may or may not have dependencies.
      this.dependsOn = dependsOn == null
          ? Collections.emptyList()
          : ImmutableList.copyOf(dependsOn);
      return this;
    }

    public AzkabanJob build() {
      return new AzkabanJob(this.name, this.type, this.props, this.dependsOn);
    }
  }
}