/**
  * Returns the content type of the file resource
  *
  * @return The content type of the file resource
  */
 public String getContentType() {
   return _resource.getContentType();
 }
 /**
  * Returns the content of the file resource
  *
  * @return The content of the file resource
  */
 public byte[] getContent() {
   return _resource.getContent();
 }