@@ -132,6 +132,26 @@ public class FiscoConfig {
132132 @ NotNull (message = "the v2.node-key-path is undefined" )
133133 @ NotEmpty (message = "the value of v2.node-key-path is null" )
134134 private String v2NodeKeyPath ;
135+
136+ @ NotNull (message = "the gm.ca-crt-path is undefined" )
137+ @ NotEmpty (message = "the value of gm.ca-crt-path is null" )
138+ private String gmCaCrtPath ;
139+
140+ @ NotNull (message = "the gm.sdk-crt-path is undefined" )
141+ @ NotEmpty (message = "the value of gm.sdk-crt-path is null" )
142+ private String gmSdkCrtPath ;
143+
144+ @ NotNull (message = "the gm.sdk-key-path is undefined" )
145+ @ NotEmpty (message = "the value of gm.sdk-key-path is null" )
146+ private String gmSdkKeyPath ;
147+
148+ @ NotNull (message = "the gmen.sdk-crt-path is undefined" )
149+ @ NotEmpty (message = "the value of gmen.sdk-crt-path is null" )
150+ private String gmenSdkCrtPath ;
151+
152+ @ NotNull (message = "the gmen.sdk-key-path is undefined" )
153+ @ NotEmpty (message = "the value of gmen.sdk-key-path is null" )
154+ private String gmenSdkKeyPath ;
135155
136156 @ NotNull (message = "the blockchain.orgid is undefined" )
137157 @ NotEmpty (message = "the value of blockchain.orgid is null" )
@@ -174,6 +194,11 @@ public boolean load() {
174194 v2CaCrtPath = PropertyUtils .getProperty ("v2.ca-crt-path" );
175195 v2NodeCrtPath = PropertyUtils .getProperty ("v2.node-crt-path" );
176196 v2NodeKeyPath = PropertyUtils .getProperty ("v2.node-key-path" );
197+ gmCaCrtPath = PropertyUtils .getProperty ("gm.ca-crt-path" );
198+ gmSdkCrtPath = PropertyUtils .getProperty ("gm.sdk-crt-path" );
199+ gmSdkKeyPath = PropertyUtils .getProperty ("gm.sdk-key-path" );
200+ gmenSdkCrtPath = PropertyUtils .getProperty ("gmen.sdk-crt-path" );
201+ gmenSdkKeyPath = PropertyUtils .getProperty ("gmen.sdk-key-path" );
177202 currentOrgId = PropertyUtils .getProperty ("blockchain.orgid" );
178203 amopId = PropertyUtils .getProperty ("amop.id" );
179204 cnsContractFollow = PropertyUtils .getProperty ("cns.contract.follow" );
0 commit comments