1 64 65 70 package com.jcorporate.expresso.kernel; 71 72 73 78 public class InstallParameters { 79 private String context; 80 private boolean tableSetup; 81 private boolean defaultSecurity; 82 private boolean defaultValues; 83 private boolean verifyTables; 84 private boolean extraSetup; 85 86 public InstallParameters() { 87 88 } 89 90 public void setContext(String context) { 91 this.context = context; 92 } 93 94 public String getContext() { 95 return context; 96 } 97 98 public void setCreateTables(boolean tableSetupFlag) { 99 tableSetup = tableSetupFlag; 100 } 101 102 public boolean isCreateTables() { 103 return tableSetup; 104 } 105 106 public void verifyCreateTables(boolean verifyTables) { 107 this.verifyTables = verifyTables; 108 } 109 110 public boolean isVerifyCreateTables() { 111 return verifyTables; 112 } 113 114 public void setDefaultSecurity(boolean defaultSecurity) { 115 this.defaultSecurity = defaultSecurity; 116 } 117 118 public boolean isDefaultSecurity() { 119 return defaultSecurity; 120 } 121 122 public void setDefaultValues(boolean defaultValues) { 123 this.defaultValues = defaultValues; 124 } 125 126 public boolean isDefaultValues() { 127 return defaultValues; 128 } 129 130 public void setAdditionalSetup(boolean extraSetup) { 131 this.extraSetup = extraSetup; 132 } 133 134 public boolean isAdditionalSetup() { 135 return extraSetup; 136 } 137 138 } 139 | Popular Tags |