Created
January 16, 2020 14:58
-
-
Save iocanel/8179fbb00c719bb3f29653ae0059b558 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.snowdrop.github.issues; | |
import java.util.Arrays; | |
import java.util.Set; | |
import io.quarkus.arc.config.ConfigProperties; | |
@ConfigProperties(prefix = "github.bridge") | |
public class BridgeConfig { | |
public Set<String> users; | |
public String[] sourceRepos; | |
public String[] targetRepos; | |
public String terminalLabel; | |
@Override | |
public String toString() { | |
return "BridgeConfig [sourceRepos=" + Arrays.toString(sourceRepos) + ", targetRepos=" + Arrays.toString(targetRepos) | |
+ ", terminalLabel=" + terminalLabel + ", users=" + users + "]"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment