com.ibm.wsdl.extensions.mime.MIMEMultipartRelatedImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libre-wsdl4j Show documentation
Show all versions of libre-wsdl4j Show documentation
Open and Free WSDL library: Web Services Description Language. Libre-wsdl4j is a fork of WSDL4J 1.6.3. WSL4j is a Java stub generator for WSDL. Many software projects still depends on WSL4j, so the idea is that libre-wsdl4j should be an actively maintained version of this software on GitHub. "WSDL, that's an anchronym i haven't heard in almost ten years." Still big in the enterprise world" - comments on the Internet.
The newest version!
/*
* (c) Copyright IBM Corp 2001, 2006
*/
package com.ibm.wsdl.extensions.mime;
import java.util.*;
import javax.wsdl.extensions.mime.*;
import javax.xml.namespace.*;
/**
* @author Matthew J. Duftler ([email protected])
*/
public class MIMEMultipartRelatedImpl implements MIMEMultipartRelated
{
protected QName elementType = MIMEConstants.Q_ELEM_MIME_MULTIPART_RELATED;
// Uses the wrapper type so we can tell if it was set or not.
protected Boolean required = null;
protected List mimeParts = new ArrayList<>();
public static final long serialVersionUID = 1;
/**
* Set the type of this extensibility element.
*
* @param elementType the type
*/
@Override
public void setElementType(QName elementType)
{
this.elementType = elementType;
}
/**
* Get the type of this extensibility element.
*
* @return the extensibility element's type
*/
public QName getElementType()
{
return elementType;
}
/**
* Set whether or not the semantics of this extension
* are required. Relates to the wsdl:required attribute.
*/
@Override
public void setRequired(Boolean required)
{
this.required = required;
}
/**
* Get whether or not the semantics of this extension
* are required. Relates to the wsdl:required attribute.
*/
public Boolean getRequired()
{
return required;
}
/**
* Add a MIME part to this MIME multipart related.
*
* @param mimePart the MIME part to be added
*/
public void addMIMEPart(MIMEPart mimePart)
{
mimeParts.add(mimePart);
}
/**
* Remove a MIME part from this MIME multipart related.
*
* @param mimePart the MIME part to be removed.
* @return the MIME part which was removed.
*/
@Override
public MIMEPart removeMIMEPart(MIMEPart mimePart)
{
if(mimeParts.remove(mimePart))
return mimePart;
else
return null;
}
/**
* Get all the MIME parts defined here.
*/
public List getMIMEParts()
{
return mimeParts;
}
@Override
public String toString() {
StringBuilder strBuf = new StringBuilder();
strBuf.append("MIMEMultipartRelated (" + elementType + "):");
strBuf.append("\nrequired=" + required);
if (mimeParts != null) {
Iterator mimePartIterator = mimeParts.iterator();
while (mimePartIterator.hasNext()) {
strBuf.append("\n" + mimePartIterator.next());
}
}
return strBuf.toString();
}
}