1 21 22 package org.apache.derby.iapi.reference; 23 24 43 44 public interface Property { 45 46 50 public static final String PROPERTIES_FILE = "derby.properties"; 51 52 53 57 public static final String PROPERTY_RUNTIME_PREFIX = "derby.__rt."; 58 59 62 63 64 67 68 76 String LOG_SEVERITY_LEVEL = "derby.stream.error.logSeverityLevel"; 77 78 83 84 String ERRORLOG_FILE_PROPERTY = "derby.stream.error.file"; 85 86 91 92 String ERRORLOG_METHOD_PROPERTY = "derby.stream.error.method"; 93 94 98 99 String ERRORLOG_FIELD_PROPERTY = "derby.stream.error.field"; 100 101 112 String LOG_FILE_APPEND = "derby.infolog.append"; 113 114 117 123 String SYSTEM_HOME_PROPERTY = "derby.system.home"; 124 125 132 String BOOT_ALL = "derby.system.bootAll"; 133 134 141 String NO_AUTO_BOOT = "derby.database.noAutoBoot"; 142 143 152 String DELETE_ON_CREATE = "derby.__deleteOnCreate"; 153 154 227 String FORCE_DATABASE_LOCK = "derby.database.forceDatabaseLock"; 228 229 230 233 234 String LOCKS_INTRO = "derby.locks."; 235 236 244 String LOCKS_ESCALATION_THRESHOLD = "derby.locks.escalationThreshold"; 245 246 249 int DEFAULT_LOCKS_ESCALATION_THRESHOLD = 5000; 250 251 254 int MIN_LOCKS_ESCALATION_THRESHOLD = 100; 255 256 259 public static final String DEADLOCK_TIMEOUT = "derby.locks.deadlockTimeout"; 260 261 264 public static final int DEADLOCK_TIMEOUT_DEFAULT = 20; 265 266 269 public static final int WAIT_TIMEOUT_DEFAULT = 60; 270 271 278 public static final String DEADLOCK_MONITOR = "derby.locks.monitor"; 279 280 292 public static final String DEADLOCK_TRACE = "derby.locks.deadlockTrace"; 293 294 297 public static final String LOCKWAIT_TIMEOUT = "derby.locks.waitTimeout"; 298 299 302 303 308 String DATABASE_CLASSPATH = "derby.database.classpath"; 309 310 313 String BOOT_DB_CLASSPATH = PROPERTY_RUNTIME_PREFIX + "database.classpath"; 314 315 316 317 320 String DATABASE_PROPERTIES_ONLY = "derby.database.propertiesOnly"; 321 322 325 326 331 public static final String CREATE_WITH_NO_LOG = 332 PROPERTY_RUNTIME_PREFIX + "storage.createWithNoLog"; 333 334 339 public static final String PAGE_SIZE_PARAMETER = "derby.storage.pageSize"; 340 341 344 public static final String PAGE_SIZE_DEFAULT_LONG = "32768"; 345 346 352 public static final int TBL_PAGE_SIZE_BUMP_THRESHOLD = 4096; 353 354 360 public static final int IDX_PAGE_SIZE_BUMP_THRESHOLD = 1024; 361 362 375 public static final String ROW_LOCKING = "derby.storage.rowLocking"; 376 377 386 String PROPERTIES_CONGLOM_ID = "derby.storage.propertiesId"; 387 388 394 String STORAGE_TEMP_DIRECTORY = "derby.storage.tempDirectory"; 395 396 439 public static final String DURABILITY_PROPERTY = 440 "derby.system.durability"; 441 442 449 public static final String DURABILITY_TESTMODE_NO_SYNC = "test"; 450 451 460 public static final String FILESYNC_TRANSACTION_LOG = 461 "derby.storage.fileSyncTransactionLog"; 462 463 464 477 String LOG_ARCHIVE_MODE = "derby.storage.logArchiveMode"; 478 479 480 489 String LOG_DEVICE_AT_BACKUP = "derby.storage.logDeviceWhenBackedUp"; 490 491 506 String MODULE_PREFIX = "derby.module."; 507 508 530 String SUB_SUB_PROTOCOL_PREFIX = "derby.subSubProtocol."; 531 532 533 546 String MODULE_ENV_JDK_PREFIX = "derby.env.jdk."; 547 548 553 String MODULE_ENV_CLASSES_PREFIX = "derby.env.classes."; 554 555 558 559 565 String LANG_TD_CACHE_SIZE = "derby.language.tableDescriptorCacheSize"; 566 int LANG_TD_CACHE_SIZE_DEFAULT = 64; 567 568 574 String LANG_PERMISSIONS_CACHE_SIZE = "derby.language.permissionsCacheSize"; 575 int LANG_PERMISSIONS_CACHE_SIZE_DEFAULT = 64; 576 582 String LANG_SPS_CACHE_SIZE = "derby.language.spsCacheSize"; 583 int LANG_SPS_CACHE_SIZE_DEFAULT =32; 584 585 595 String LANGUAGE_STALE_PLAN_CHECK_INTERVAL = 596 "derby.language.stalePlanCheckInterval"; 597 598 599 600 int DEFAULT_LANGUAGE_STALE_PLAN_CHECK_INTERVAL = 100; 601 602 603 int MIN_LANGUAGE_STALE_PLAN_CHECK_INTERVAL = 5; 604 605 606 610 String STATEMENT_CACHE_SIZE = "derby.language.statementCacheSize"; 611 int STATEMENT_CACHE_SIZE_DEFAULT = 100; 612 613 614 public static final String DEFAULT_USER_NAME = "APP"; 615 public static final String DATABASE_MODULE = "org.apache.derby.database.Database"; 616 617 623 public static final String 624 SQL_AUTHORIZATION_PROPERTY = "derby.database.sqlAuthorization"; 625 626 public static final String 627 DEFAULT_CONNECTION_MODE_PROPERTY = "derby.database.defaultConnectionMode"; 628 629 public static final String NO_ACCESS = "noAccess"; 630 public static final String READ_ONLY_ACCESS = "readOnlyAccess"; 631 public static final String FULL_ACCESS = "fullAccess"; 632 public static final String DEFAULT_ACCESS = FULL_ACCESS; 633 634 public static final String 635 READ_ONLY_ACCESS_USERS_PROPERTY = "derby.database.readOnlyAccessUsers"; 636 637 public static final String 638 FULL_ACCESS_USERS_PROPERTY = "derby.database.fullAccessUsers"; 639 640 643 644 public static final String REQUIRE_AUTHENTICATION_PARAMETER = 646 "derby.connection.requireAuthentication"; 647 648 public static final String AUTHENTICATION_PROVIDER_PARAMETER = 649 "derby.authentication.provider"; 650 651 public static final String USER_PROPERTY_PREFIX = "derby.user."; 653 654 656 public static final String AUTHENTICATION_PROVIDER_BUILTIN = 657 "BUILTIN"; 658 659 public static final String AUTHENTICATION_PROVIDER_LDAP = 660 "LDAP"; 661 662 public static final String AUTHENTICATION_SERVER_PARAMETER = 663 "derby.authentication.server"; 664 665 668 669 672 public static final String LOG_SWITCH_INTERVAL = "derby.storage.logSwitchInterval"; 673 674 677 public static final String CHECKPOINT_INTERVAL = "derby.storage.checkpointInterval"; 678 679 682 public static final String LOG_ARCHIVAL_DIRECTORY = "derby.storage.logArchive"; 683 684 687 public static final String LOG_BUFFER_SIZE = "derby.storage.logBufferSize"; 688 689 690 693 694 699 String ALPHA_BETA_ALLOW_UPGRADE = "derby.database.allowPreReleaseUpgrade"; 700 701 710 String IN_RESTORE_FROM_BACKUP = PROPERTY_RUNTIME_PREFIX + "inRestore"; 711 712 713 722 String DELETE_ROOT_ON_ERROR = PROPERTY_RUNTIME_PREFIX + "deleteRootOnError"; 723 724 public static final String HTTP_DB_FILE_OFFSET = "db2j.http.file.offset"; 725 public static final String HTTP_DB_FILE_LENGTH = "db2j.http.file.length"; 726 public static final String HTTP_DB_FILE_NAME = "db2j.http.file.name"; 727 728 736 public static final String START_DRDA = "derby.drda.startNetworkServer"; 737 738 745 public final static String DRDA_PROP_LOGCONNECTIONS = "derby.drda.logConnections"; 746 753 public final static String DRDA_PROP_TRACEALL = "derby.drda.traceAll"; 754 public final static String DRDA_PROP_TRACE = "derby.drda.trace"; 755 756 764 public final static String DRDA_PROP_TRACEDIRECTORY = "derby.drda.traceDirectory"; 765 766 public final static String DRDA_PROP_MINTHREADS = "derby.drda.minThreads"; 767 public final static String DRDA_PROP_MAXTHREADS = "derby.drda.maxThreads"; 768 public final static String DRDA_PROP_TIMESLICE = "derby.drda.timeSlice"; 769 770 792 public final static String DRDA_PROP_SECURITYMECHANISM = "derby.drda.securityMechanism"; 793 794 799 public final static String DRDA_PROP_PORTNUMBER = "derby.drda.portNumber"; 800 public final static String DRDA_PROP_HOSTNAME = "derby.drda.host"; 801 802 808 public final static String DRDA_PROP_KEEPALIVE = "derby.drda.keepAlive"; 809 810 811 816 public final static String DRDA_PROP_STREAMOUTBUFFERSIZE = "derby.drda.streamOutBufferSize"; 817 818 821 public static final String SERVICE_PROTOCOL = "derby.serviceProtocol"; 822 public static final String SERVICE_LOCALE = "derby.serviceLocale"; 823 824 837 public static final String STORAGE_DATA_NOT_SYNCED_AT_CHECKPOINT = 838 "db2j.storage.dataNotSyncedAtCheckPoint"; 839 840 853 public static final String STORAGE_DATA_NOT_SYNCED_AT_ALLOCATION = 854 "db2j.storage.dataNotSyncedAtAllocation"; 855 856 869 public static final String STORAGE_LOG_NOT_SYNCED = 870 "db2j.storage.logNotSynced"; 871 872 } 873 | Popular Tags |