I am not so familiar to JAXB but this is the context I have, please read everything to understand.
1. I am doing the following to get a value using JAXB from this XML...
XML Document snippet (Original):
<Request deploymentMode="production">
<OrderRequest>
<OrderRequestHeader orderID="12345" orderDate="2012-07-04" type="new">
<Total>
<Money currency="USD">200.0</Money>
</Total>
<ShipTo>
<Address>
<Name xml:lang="">Test</Name>
<PostalAddress name="default">
<DeliverTo/>
<Street>Value 1</Street>
<City>Value 2</City>
<State>Value 3</State>
<PostalCode>302010</PostalCode>
<Country isoCountryCode="US">USA</Country>
</PostalAddress>
</Address>
</ShipTo>
So, the value I want is the State from PostalAddress and I use this code:
String state = xml.getRequest().getOrderRequest().getOrderRequestHeader().getShipTo().getAddress().getPostalAddress().getState();
//This will return "Value 3"
And everything works good.
2. The problem starts at this point, I will do the same as above but using now this XML...
XML Document snippet (Other):
<Request deploymentMode="production">
<OrderRequest>
<OrderRequestHeader orderID="12345" orderDate="2012-07-04" type="new">
<Total>
<Money currency="USD">200.0</Money>
</Total>
<ShipTo>
<Address>
<Name xml:lang="">Test</Name>
</Address>
</ShipTo>
Well, I know that the value doesn't exist but I don't want to make any change to my code and still using this:
String state = xml.getRequest().getOrderRequest().getOrderRequestHeader().getShipTo().getAddress().getPostalAddress().getState();
The above code will produce a NullPointerException and stop the process. What I need is not to stop the process cause this is not the only value I am extracting from XML (this is just an example of what I am dealing with). So, If the value can't be found, then I want that my state variable be null automatically.
Q: Is there a way for not producing and exception and make my string variable state just null if the value can't be found?
PS. A possible solution could be to do something like this:
//Fill the entity
PostalAddressType p = xml.getRequest().getOrderRequest().getOrderRequestHeader().getShipTo().getAddress().getPostalAddress();
//Variable for state
String state = null;
//Evaluate if it is null or not
if(p != null)
//Capture the value if not null
state = p.getState();
But I don't like to make an if statement for every entity of my XML. As I said, I want something automate without modifying the code and I don't know if there is some JAXB configuration or something to do for this.
Thanks in advance.