* @param tag the tag to search for
* @return The list of objects with the given tag. If no objects are found
* the array will be empty.
*/
public List<ObjectResult> listObjectsWithMetadata(String tag) {
ListOptions options = new ListOptions();
options.setIncludeMetadata( true );
return listObjects( tag, options );
}