Package com.emc.esu.api

Examples of com.emc.esu.api.ListOptions


     * @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 );
    }
View Full Code Here


     * @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 );
    }
View Full Code Here

TOP

Related Classes of com.emc.esu.api.ListOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.