Change order of endpoint property serialization
-----------------------------------------------
Key: SYNAPSE-772
URL: https://issues.apache.org/jira/browse/SYNAPSE-772
Project: Synapse
Issue Type: Improvement
Components: Endpoints
Affects Versions: NIGHTLY
Reporter: Miyuru Wanninayaka
Priority: Minor
Fix For: NIGHTLY
Currently, properties of endpoints gets serialize before definition of endpoint
like:
<endpoint>
<property name="a" value="x"/>
<property name="b" value="y"/>
<address url="http://localhost:9000"/>
</endpoint>
Ideally properties should serialized after endpoint definition.
like:
<endpoint>
<address url="http://localhost:9000"/>
<property name="a" value="x"/>
<property name="b" value="y"/>
</endpoint>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]