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

com.cognifide.aet.communication.api.metadata.StepResult Maven / Gradle / Ivy

/**
 * AET
 *
 * Copyright (C) 2013 Cognifide Limited
 *
 * 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 com.cognifide.aet.communication.api.metadata;

import com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.validation.constraints.Pattern;
import org.apache.commons.lang3.StringUtils;

public abstract class StepResult implements Serializable {

  private static final long serialVersionUID = 7757386595499766654L;

  @Pattern(regexp = "^[0-9a-fA-F]{24}$", message = "Invalid objectID")

  private final String artifactId;

  private final Payload payload;

  private List errors = new ArrayList<>();

  private Map data = new HashMap<>();

  public StepResult(String artifactId, Payload payload) {
    this.artifactId = artifactId;
    this.payload = payload;
  }

  public StepResult(String artifactId) {
    this(artifactId, null);
  }

  public String getArtifactId() {
    return artifactId;
  }

  public abstract String getStatusName();

  public Map getData() {
    return ImmutableMap.copyOf(data);
  }

  public String addData(String key, String value) {
    return data.put(key, value);
  }

  public void addError(String error) {
    if (StringUtils.isNotBlank(error)) {
      errors.add(error);
    }
  }

  public List getErrors() {
    return errors != null ? ImmutableList.copyOf(errors) : Collections.emptyList();
  }

  public Payload getPayload() {
    return payload;
  }

  @Override
  public String toString() {
    return MoreObjects.toStringHelper(this)
        .add("status", getStatusName())
        .add("artifactId", getArtifactId())
        .add("errors", getErrors())
        .add("data", getData())
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy