Methods Summary |
---|
public java.lang.String | getCharSet()Return the character encoding of this part.
return this.charSet;
|
public java.lang.String | getContentType()Returns the content type of this part.
return this.contentType;
|
public java.lang.String | getName()Returns the name.
return this.name;
|
public java.lang.String | getTransferEncoding()Returns the transfer encoding of this part.
return transferEncoding;
|
public void | setCharSet(java.lang.String charSet)Sets the character encoding.
this.charSet = charSet;
|
public void | setContentType(java.lang.String contentType)Sets the content type.
this.contentType = contentType;
|
public void | setName(java.lang.String name)Sets the part name.
if (name == null) {
throw new IllegalArgumentException("Name must not be null");
}
this.name = name;
|
public void | setTransferEncoding(java.lang.String transferEncoding)Sets the transfer encoding.
this.transferEncoding = transferEncoding;
|