mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Finish YAMLification of last necessary config values
There are still some options in RegistryConfig that can't be configured in YAML, but it's not clear why anyone would need to change them from their default values. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=146482435
This commit is contained in:
parent
4031988409
commit
61230b035c
12 changed files with 92 additions and 60 deletions
|
@ -29,6 +29,7 @@ public class RegistryConfigSettings {
|
|||
public RegistrarConsole registrarConsole;
|
||||
public Monitoring monitoring;
|
||||
public Misc misc;
|
||||
public Rdap rdap;
|
||||
public Braintree braintree;
|
||||
|
||||
/** Configuration options that apply to the entire App Engine project. */
|
||||
|
@ -58,12 +59,16 @@ public class RegistryConfigSettings {
|
|||
public String customLogicFactoryClass;
|
||||
public String whoisCommandFactoryClass;
|
||||
public int contactAutomaticTransferDays;
|
||||
public String greetingServerId;
|
||||
public List<String> registrarChangesNotificationEmailAddresses;
|
||||
public String defaultRegistrarWhoisServer;
|
||||
public String defaultRegistrarReferralUrl;
|
||||
public String tmchCaMode;
|
||||
public String tmchCrlUrl;
|
||||
public String tmchMarksDbUrl;
|
||||
public String checkApiServletClientId;
|
||||
public String reservedTermsExportDisclaimer;
|
||||
public String whoisDisclaimer;
|
||||
}
|
||||
|
||||
/** Configuration for Cloud Datastore. */
|
||||
|
@ -84,6 +89,7 @@ public class RegistryConfigSettings {
|
|||
public static class Rde {
|
||||
public String reportUrlPrefix;
|
||||
public String uploadUrl;
|
||||
public String sshIdentityEmailAddress;
|
||||
}
|
||||
|
||||
/** Configuration for the web-based registrar console. */
|
||||
|
@ -108,6 +114,11 @@ public class RegistryConfigSettings {
|
|||
public String sheetExportId;
|
||||
}
|
||||
|
||||
/** Configuration for RDAP. */
|
||||
public static class Rdap {
|
||||
public String baseUrl;
|
||||
}
|
||||
|
||||
/** Configuration for Braintree credit card payment processing. */
|
||||
public static class Braintree {
|
||||
public String merchantId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue