posted 16 years ago
Hi,
I am using JAX-RS (Restful Service) in Apache CXF to create my application. Xml is going back in Response. So, it is as below :
<Customer>
<id>123</id>
<name>abc</abc>
<phone>123</phone>
</Customer>
So, for this response i have created bean class :
@XmlRootElement(name = "Customer")
public class Customer {
}
I want to customize above xml. So, how i can do that ? It is like as :
<Customer id="123">
<name>abc</name>
<phone>123<phone>
</Cusomer>
In short, i want I want to add attribute. So, how i can do that ?
Pls help me..