nileshdk
13 years agoNew Contributor
Mapping property values to attribute values in a request
I am looking to map property values to attribute values in a request. For example I would like to externalize the value of Description, DisplayName and Name in the request below. How can I do that?
I have properties defined for each of Description, DisplayName and Name. So essentially I am looking to do something like this,
Thanks in advance!
<org:Customer org1:Description="customer" org1:DisplayName="google"
org1:Name="google"/>
I have properties defined for each of Description, DisplayName and Name. So essentially I am looking to do something like this,
<org:Customer org1:Description=${#Project#orgdesc}
org1:DisplayName=${#Project#orgdisplayname}
org1:Name=${#Project#orgdisplayname}/>
Thanks in advance!