Skip to content

Commit

Permalink
Legend SQL - add arguments getter to TableSource (finos#2366)
Browse files Browse the repository at this point in the history
  • Loading branch information
gs-jp1 authored Oct 16, 2023
1 parent 0863658 commit e52be12
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public Optional<TableSourceArgument> getNamedArgument(String name)
return ListIterate.select(this.arguments, a -> name.equals(a.getName())).getFirstOptional();
}

public List<TableSourceArgument> getArguments()
{
return this.arguments;
}

@Override
public boolean equals(Object o)
{
Expand All @@ -76,4 +81,4 @@ public String toString()
{
return ToStringBuilder.reflectionToString(this);
}
}
}

0 comments on commit e52be12

Please sign in to comment.