Skip to content

Commit

Permalink
Issue #374: Add the possibility to add default connector variables
Browse files Browse the repository at this point in the history
* Minor ajustement.
  • Loading branch information
CherfaElyes committed Sep 25, 2024
1 parent ec13ede commit 25c9f0b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Builder.Default;
import lombok.Data;
import lombok.NoArgsConstructor;

Expand Down Expand Up @@ -83,5 +84,6 @@ public class ConnectorIdentity implements Serializable {
/**
* The connector default variables that can be specified.
*/
private final Map<String, ConnectorDefaultVariable> variables = new HashMap<>();
@Default
private Map<String, ConnectorDefaultVariable> variables = new HashMap<>();
}

0 comments on commit 25c9f0b

Please sign in to comment.