/* */ protected void setMcfProperties(Collection properties, boolean mustExist)
/* */ throws DeploymentException
/* */ {
/* 446 */ for (Iterator i = properties.iterator(); i.hasNext(); )
/* */ {
/* 448 */ ConfigPropertyMetaData cpmd = (ConfigPropertyMetaData)i.next();
/* 449 */ String name = cpmd.getName();
/* 450 */ String type = cpmd.getType();
/* 451 */ String value = cpmd.getValue();
/* 452 */ if ((name == null) || (name.length() == 0) || (value == null) || (value.length() == 0))
/* */ {
/* 454 */ this.log.debug("Not setting config property '" + name + "'");
/* 455 */ continue;
/* */ }