When I started using continuous
integration against my own code, the very first results were buggy as
expected, a lot of warnings, bugs and minor mistakes. Step by step, I am
tailoring my source code in order to satisfy the quality
criteria of PMD and Findbugs, but some warnings persist and some of
them make me worry about the code quality I am delivering to my
customers.
From the controversial...
Few days evaluating my options about binding my SOAP message
objects to my JPA entities.... I have:
A soap serializable type, let's say SoapType:
A JPA entity type, let's say SoapEntity:
package soap.objects;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {"number",})
@XmlRootElement(name = "Domain")
class SoapType implements...