public final Set<java.lang.String> getGoogleAnalyticsIds() { if (googleAnalyticsIdsCache == null) { googleAnalyticsIdsCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isGoogleAnalyticsIdSet()) googleAnalyticsIdsCache.add(e.getGoogleAnalyticsId()); } } return googleAnalyticsIdsCache; }
public final Set<java.lang.Integer> getSmtpPorts() { if (smtpPortsCache == null) { smtpPortsCache = new HashSet<java.lang.Integer>(); for (SystemConfig e : getEntities()) { if (e.isSmtpPortSet()) smtpPortsCache.add(e.getSmtpPort()); } } return smtpPortsCache; }
public final Set<java.lang.String> getAdminEmails() { if (adminEmailsCache == null) { adminEmailsCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isAdminEmailSet()) adminEmailsCache.add(e.getAdminEmail()); } } return adminEmailsCache; }
public final Set<java.lang.String> getHolidayss() { if (holidayssCache == null) { holidayssCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isHolidaysSet()) holidayssCache.add(e.getHolidays()); } } return holidayssCache; }
public final Set<java.lang.Integer> getWorkingHoursPerDays() { if (workingHoursPerDaysCache == null) { workingHoursPerDaysCache = new HashSet<java.lang.Integer>(); for (SystemConfig e : getEntities()) { if (e.isWorkingHoursPerDaySet()) workingHoursPerDaysCache.add(e.getWorkingHoursPerDay()); } } return workingHoursPerDaysCache; }
public final Set<java.lang.String> getSmtpFroms() { if (smtpFromsCache == null) { smtpFromsCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isSmtpFromSet()) smtpFromsCache.add(e.getSmtpFrom()); } } return smtpFromsCache; }
public final Set<java.lang.String> getAboutPageMessages() { if (aboutPageMessagesCache == null) { aboutPageMessagesCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isAboutPageMessageSet()) aboutPageMessagesCache.add(e.getAboutPageMessage()); } } return aboutPageMessagesCache; }
public final Set<java.lang.Integer> getMaxFileSizes() { if (maxFileSizesCache == null) { maxFileSizesCache = new HashSet<java.lang.Integer>(); for (SystemConfig e : getEntities()) { if (e.isMaxFileSizeSet()) maxFileSizesCache.add(e.getMaxFileSize()); } } return maxFileSizesCache; }
public final Set<java.lang.String> getOpenIdDomainss() { if (openIdDomainssCache == null) { openIdDomainssCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isOpenIdDomainsSet()) openIdDomainssCache.add(e.getOpenIdDomains()); } } return openIdDomainssCache; }
public final Set<java.lang.String> getInstanceNames() { if (instanceNamesCache == null) { instanceNamesCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isInstanceNameSet()) instanceNamesCache.add(e.getInstanceName()); } } return instanceNamesCache; }
public final Set<java.lang.String> getDefaultUserPasswords() { if (defaultUserPasswordsCache == null) { defaultUserPasswordsCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isDefaultUserPasswordSet()) defaultUserPasswordsCache.add(e.getDefaultUserPassword()); } } return defaultUserPasswordsCache; }
public final Set<java.lang.String> getSubscriptionKeySeeds() { if (subscriptionKeySeedsCache == null) { subscriptionKeySeedsCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isSubscriptionKeySeedSet()) subscriptionKeySeedsCache.add(e.getSubscriptionKeySeed()); } } return subscriptionKeySeedsCache; }
public final Set<java.lang.String> getRegisterPageMessages() { if (registerPageMessagesCache == null) { registerPageMessagesCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isRegisterPageMessageSet()) registerPageMessagesCache.add(e.getRegisterPageMessage()); } } return registerPageMessagesCache; }
public final Set<java.lang.String> getLoginPageMessages() { if (loginPageMessagesCache == null) { loginPageMessagesCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isLoginPageMessageSet()) loginPageMessagesCache.add(e.getLoginPageMessage()); } } return loginPageMessagesCache; }
public final Set<java.lang.String> getLdapUrls() { if (ldapUrlsCache == null) { ldapUrlsCache = new HashSet<java.lang.String>(); for (SystemConfig e : getEntities()) { if (e.isLdapUrlSet()) ldapUrlsCache.add(e.getLdapUrl()); } } return ldapUrlsCache; }
public boolean test(SystemConfig e) { return value == e.isOpenIdDisabled(); }
public boolean test(SystemConfig e) { return e.isDefaultUserPassword(value); }
public boolean test(SystemConfig e) { return e.isLdapUrl(value); }
public boolean test(SystemConfig e) { return value == e.isLdapEnabled(); }
public boolean test(SystemConfig e) { return e.isAboutPageMessage(value); }
public boolean test(SystemConfig e) { return e.isRegisterPageMessage(value); }
public boolean test(SystemConfig e) { return e.isLoginPageLogoUrl(value); }
public boolean test(SystemConfig e) { return e.isInstanceName(value); }
public boolean test(SystemConfig e) { return e.isOpenIdDomains(value); }
public boolean test(SystemConfig e) { return value == e.isVersionCheckEnabled(); }
public boolean test(SystemConfig e) { return value == e.isUserEmailMandatory(); }
public boolean test(SystemConfig e) { return value == e.isRegistrationDisabled(); }
public boolean test(SystemConfig e) { return value == e.isProjectCreationDisabled(); }
public int compareTo(SystemConfig other) { return toString().toLowerCase().compareTo(other.toString().toLowerCase()); }
public boolean test(SystemConfig e) { return e.isSmtpFrom(value); }