/**
  * Returns the MIME type of the data represented by this object.
  *
  * @return the MIME type
  */
 public String getContentType() {
   return dataHandler.getContentType();
 }
 /**
  * Returns the name of this object.
  *
  * @return the name of this object
  */
 public String getName() {
   return dataHandler.getName(); // what else would it be?
 }
 /**
  * Returns the <code>OutputStream</code> for this object.
  *
  * @return the <code>OutputStream</code>
  */
 public OutputStream getOutputStream() throws IOException {
   return dataHandler.getOutputStream();
 }