public Builder soapAction (String s) {soapAction = s; return this; }
public Builder accept (String s) {accept = s; return this; }
public Builder charset (String s) {charset = s; return this; }
public ContentType build() {
//TODO Do we want to remove this implementation dependency?
return new ContentTypeImpl(contentType, soapAction, accept, charset);
}