//it seems broken to state an @xmlValue property in the property order, but wsgen does it, so we'll account for the case here.
assertedProperties.remove(complexType.getValue().getSimpleName());
}
if (!assertedProperties.isEmpty()) {
result.addError(complexType, "Properties are declared in the @XmlType.propOrder element, but are not in the element accessor list: [" +
assertedProperties + "]. Perhaps you're missing a setter method for these properties? If so, this is an Enunciate limitation and not a JAXB " +
"limitation. Either add some no-op setter methods for these properties, or disable the java-client module.");
}
if (!serverSideTypesToUse.isEmpty()) {