descriptor.getResourcePrincipal());
}
// properties*
Iterator properties = descriptor.getProperties();
if (properties!=null) {
RuntimeNameValuePairNode propNode = new RuntimeNameValuePairNode();
while (properties.hasNext()) {
NameValuePairDescriptor aProp = (NameValuePairDescriptor) properties.next();
propNode.writeDescriptor(cmp, RuntimeTagNames.PROPERTY, aProp);
}
}
// createTableAtDeploy, dropTableAtUndeploy
if (descriptor.isCreateTablesAtDeploy()) {