List of usage examples for javax.xml.soap SOAPPart setValue
public void setValue(String value);
From source file:com.googlecode.ddom.saaj.SOAPPartTest.java
@Validated @Test(expected = IllegalStateException.class) public void testSetValue() throws Exception { SOAPPart soapPart = factory.createMessage().getSOAPPart(); soapPart.setValue("test"); }
From source file:com.googlecode.ddom.saaj.SOAPPartTest.java
@Validated @Test(expected = IllegalStateException.class) public void testSetValueNull() throws Exception { SOAPPart soapPart = factory.createMessage().getSOAPPart(); soapPart.setValue(null); }