You could do the following:
Use Case #1 - Not Marshal Person Object Based on Name Element
If Person is Root Object
If Person is the root object then you can do the following as suggested by JB Nizet in the comments on this question.
if (!"test10".equals(person.getName()) {
marshaller.marshal(person);
}
If Person is a Referenced Object
If Person is not the root object then you could use an XmlAdapter for this use case. It would look something like the following:
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class PersonAdapter extends XmlAdapter<Person, Person> {
@Override
public Person unmarshal(Person person) throws Exception {
return person;
}
@Override
public Person marshal(Person person) throws Exception {
if(mull == person || "test10".equals(person.getName()) {
return null;
}
return person;
}
}
The XmlAdapter is specified using the @XmlJavaTypeAdapter annotation. This annotation can be configured at the field/property, type, and package levels. For examples see:
Use Case #2 - Not Marshal Name Element Based On its Value
If you just want to avoid marshalling the name element based on its value then again you could use an XmlAdapter:
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class NameAdapter extends XmlAdapter<String, String> {
@Override
public String unmarshal(String string) throws Exception {
return string;
}
@Override
public String marshal(String string) throws Exception {
if("test10".equals(string) {
return null;
}
return string;
}
}
Your Person class would look like:
@XmlRootElement(name = "publisher")
class Person
{
@XmlElement(required = true)
int id;
@XmlElement(required = true)
@XmlJavaTypeAdapter(NameAdapter.class)
String name;
}