Skip to content

Commit

Permalink
update deployment result (#3222)
Browse files Browse the repository at this point in the history
  • Loading branch information
janeenyamak1 authored Nov 4, 2024
1 parent 5efc007 commit a3119e0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@

package org.finos.legend.engine.protocol.hostedService.deployment;

import org.eclipse.collections.api.list.MutableList;
import java.util.List;
import org.finos.legend.engine.protocol.functionActivator.deployment.DeploymentResult;

public class HostedServiceDeploymentResult extends DeploymentResult
{
public String error;
public String deployed;
public String generationId;
public MutableList<String> errors;
public List<String> errors;

public HostedServiceDeploymentResult()
{
//jackson
}

public HostedServiceDeploymentResult(MutableList<String> errors)
public HostedServiceDeploymentResult(List<String> errors)
{
this.errors = errors;
}
Expand Down

0 comments on commit a3119e0

Please sign in to comment.