Skip to content

Commit

Permalink
Merge pull request #3375 from atlanhq/DQ-343
Browse files Browse the repository at this point in the history
DQ-343 Datatype change for owners attr in Contracts
  • Loading branch information
bichitra95 authored Aug 7, 2024
2 parents e50cc62 + 5ff0773 commit bd1056d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ public class DataContract {
public String dataset;
public DatasetType type;
public String description;
public List<String> owners;
public Object owners;
public List<BusinessTag> tags;
public String certificate;
@Valid
public List<Column> columns;
private final Map<String, Object> unknownFields = new HashMap<>();
private final Map<String, Object> unknownFields = new HashMap<>();

public enum Status {
@JsonProperty("DRAFT") DRAFT,
Expand Down Expand Up @@ -146,7 +146,7 @@ public void setType(String type) throws AtlasBaseException {
}
}

public void setOwners(List<String> owners) {
public void setOwners(Object owners) {
this.owners = owners;
}

Expand Down

0 comments on commit bd1056d

Please sign in to comment.