/* 312 */ flag = StringPropertyReplacer.replaceProperties(flag.trim());
/* 313 */ if (flag == null)
/* 314 */ flag = "REQUIRED";
/* */ else
/* 316 */ flag = flag.toUpperCase();
/* 317 */ IdentityTrustModuleEntry entry = new IdentityTrustModuleEntry(code);
/* 318 */ if ("REQUIRED".equals(flag)) {
/* 319 */ entry.setControlFlag(ControlFlag.REQUIRED);
/* */ }
/* 321 */ else if ("REQUISITE".equals(flag)) {
/* 322 */ entry.setControlFlag(ControlFlag.REQUISITE);
/* */ }
/* 324 */ else if ("SUFFICIENT".equals(flag))
/* 325 */ entry.setControlFlag(ControlFlag.SUFFICIENT);
/* */ else {
/* 327 */ entry.setControlFlag(ControlFlag.OPTIONAL);
/* */ }
/* 329 */ child = entry;
/* 330 */ if (this.trace) {
/* 331 */ log.trace("newChild.IdentityTrustInfo, trust-module code: " + code);
/* */ }