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

com.arextest.schedule.model.plan.BuildReplayPlanResponse Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.plan;

import lombok.Data;

/**
 * Created by Qzmo on 2023/6/29
 */
@Data
public class BuildReplayPlanResponse {

  private int reasonCode;
  private String replayPlanId;

  public BuildReplayPlanResponse(BuildReplayFailReasonEnum reason) {
    this.reasonCode = reason.getCode();
  }

  public BuildReplayPlanResponse(int errorCode) {
    this.reasonCode = errorCode;
  }

  public BuildReplayPlanResponse(String replayPlanId) {
    this.reasonCode = BuildReplayFailReasonEnum.NORMAL.getCode();
    this.replayPlanId = replayPlanId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy