Skip to content

Commit

Permalink
add the jhipster.registry.password property
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBesson committed Jan 23, 2017
1 parent 8f5836c commit 2f789a1
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ public class JHipsterProperties {

private final Ribbon ribbon = new Ribbon();

private final Registry registry = new Registry();

public Async getAsync() {
return async;
}
Expand All @@ -70,6 +72,10 @@ public Mail getMail() {
return mail;
}

public Registry getRegistry() {
return registry;
}

public Security getSecurity() {
return security;
}
Expand Down Expand Up @@ -762,4 +768,17 @@ public void setDisplayOnActiveProfiles(String[] displayOnActiveProfiles) {
this.displayOnActiveProfiles = displayOnActiveProfiles;
}
}

private static class Registry {

private String password;

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}
}
}

0 comments on commit 2f789a1

Please sign in to comment.