コード例 #1
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public String getLabel() {
   String hash = getHash();
   String label = hash;
   Map<String, String> labels = configServer.getLabels();
   if (labels != null) {
     String l = labels.get(hash);
     if (!StringUtil.isEmpty(l)) {
       label = l;
     }
   }
   return label;
 }
コード例 #2
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public URL getUpdateLocation() {
   return configServer.getUpdateLocation();
 }
コード例 #3
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public ActionMonitor getActionMonitor(String name) {
   return configServer.getActionMonitor(name);
 }
コード例 #4
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public Password isServerPasswordEqual(String password) {
   return configServer.isPasswordEqual(password);
 }
コード例 #5
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public int getServerPasswordOrigin() {
   return configServer.getPasswordOrigin();
 }
コード例 #6
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public int getServerPasswordType() {
   return configServer.getPasswordType();
 }
コード例 #7
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public boolean getFullNullSupport() {
   return configServer.getFullNullSupport();
 }
コード例 #8
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public boolean allowRequestTimeout() {
   return configServer.allowRequestTimeout();
 }
コード例 #9
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public boolean isMonitoringEnabled() {
   return configServer.isMonitoringEnabled();
 }
コード例 #10
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public Resource getSecurityDirectory() {
   return configServer.getSecurityDirectory();
 }
コード例 #11
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public boolean getRememberMe() {
   return configServer.getRememberMe();
 }
コード例 #12
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public boolean getLoginCaptcha() {
   return configServer.getLoginCaptcha();
 }
コード例 #13
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public int getLoginDelay() {
   return configServer.getLoginDelay();
 }
コード例 #14
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public ThreadQueue getThreadQueue() {
   return configServer.getThreadQueue();
 }
コード例 #15
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public Resource getConfigServerDir() {
   return configServer.getConfigDir();
 }
コード例 #16
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public RequestMonitor[] getRequestMonitors() {
   return configServer.getRequestMonitors();
 }
コード例 #17
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public Map<String, String> getAllLabels() {
   return configServer.getLabels();
 }
コード例 #18
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public RequestMonitor getRequestMonitor(String name) throws PageException {
   return configServer.getRequestMonitor(name);
 }
コード例 #19
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public ActionMonitorCollector getActionMonitorCollector() {
   return configServer.getActionMonitorCollector();
 }
コード例 #20
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public IntervallMonitor[] getIntervallMonitors() {
   return configServer.getIntervallMonitors();
 }
コード例 #21
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public boolean hasIndividualSecurityManager() {
   return configServer.hasIndividualSecurityManager(getIdentification().getId());
 }
コード例 #22
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public IntervallMonitor getIntervallMonitor(String name) throws PageException {
   return configServer.getIntervallMonitor(name);
 }
コード例 #23
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public String getServerPasswordSalt() {
   return configServer.getPasswordSalt();
 }
コード例 #24
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public void checkPermGenSpace(boolean check) {
   configServer.checkPermGenSpace(check);
 }
コード例 #25
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 public String getServerSalt() {
   return configServer.getSalt();
 }
コード例 #26
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public Cluster createClusterScope() throws PageException {
   return configServer.createClusterScope();
 }
コード例 #27
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public Collection<BundleDefinition> getAllExtensionBundleDefintions() {
   return configServer.getAllExtensionBundleDefintions();
 }
コード例 #28
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public boolean hasServerPassword() {
   return configServer.hasPassword();
 }
コード例 #29
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public Resource getLocalExtensionProviderDirectory() {
   return configServer.getLocalExtensionProviderDirectory();
 }
コード例 #30
0
ファイル: ConfigWebImpl.java プロジェクト: amaroom/Lucee
 @Override
 public String getUpdateType() {
   return configServer.getUpdateType();
 }