提交 921e3207 编写于 作者: B bernd.ruecker

added login help to repo configuration

上级 41470eb8
......@@ -25,15 +25,13 @@ public abstract class RepositoryConnectorConfiguration {
private String name = this.getClass().getSimpleName().replace("Configuration", "");
// /**
// * id (unique!)
// * short name used in URL to identify repository
// */
// private String shortName =
// this.getClass().getSimpleName().replace("Configuration", "");
private String description;
/**
* help text to present the user when login fails.
*/
private String loginHelp;
/**
* Name of configuration scope.
*
......@@ -147,6 +145,15 @@ public abstract class RepositoryConnectorConfiguration {
this.id = id;
}
public String getLoginHelp() {
return loginHelp;
}
public void setLoginHelp(String loginHelp) {
this.loginHelp = loginHelp;
}
// @Override
// public String toString() {
// return "RepositoryConnectorConfiguration '" +
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册