*
* @return {@link DerivedExample}, the resulting businessclass object.
*/
public DerivedExample exampleFromDto(final DerivedDto2 source) {
Assert.notNull(source, "argument [source] may not be null");
DerivedExample result = new DerivedExample();
if (source.isSecondo() != null) {
result.setSecondo(source.isSecondo());
}
if (source.getFourth() != null) {
result.setFourth(source.getFourth());
}
return result;
}