Package javax.wsdl.extensions.mime
Interface MIMEContent
-
- All Superinterfaces:
ExtensibilityElement
,java.io.Serializable
- All Known Implementing Classes:
MIMEContentImpl
public interface MIMEContent extends ExtensibilityElement, java.io.Serializable
- Author:
- Matthew J. Duftler (duftler@us.ibm.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPart()
Get the part for this MIME content.java.lang.String
getType()
Get the type for this MIME content.void
setPart(java.lang.String part)
Set the part for this MIME content.void
setType(java.lang.String type)
Set the type for this MIME content.-
Methods inherited from interface javax.wsdl.extensions.ExtensibilityElement
getElementType, getRequired, setElementType, setRequired
-
-
-
-
Method Detail
-
setPart
void setPart(java.lang.String part)
Set the part for this MIME content.- Parameters:
part
- the desired part
-
getPart
java.lang.String getPart()
Get the part for this MIME content.
-
setType
void setType(java.lang.String type)
Set the type for this MIME content.- Parameters:
type
- the desired type
-
getType
java.lang.String getType()
Get the type for this MIME content.
-
-