All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.myjeeva.digitalocean.pojo.Volumes Maven / Gradle / Ivy

There is a newer version: 2.17
Show newest version
/**
 * Copyright (c) Jeevanandam M. (https://github.com/jeevatkm)
 * 
 * digitalocean-api-client source code and usage is governed by a MIT style license that can be
 * found in the LICENSE file
 */

package com.myjeeva.digitalocean.pojo;

import java.util.List;

import org.apache.commons.lang3.builder.ReflectionToStringBuilder;

/**
 * Represents list of volumes.
 * 
 * @author Eugene Strokin (https://github.com/strokine)
 * 
 * @since v2.7
 */
public class Volumes extends Base {

  private static final long serialVersionUID = 1739002259344347687L;

  private List volumes;

  @Override
  public String toString() {
    return ReflectionToStringBuilder.toString(this);
  }

  /**
   * @return the volumes
   */
  public List getVolumes() {
    return volumes;
  }

  /**
   * @param volumes the volumes to set
   */
  public void setVolumes(List volumes) {
    this.volumes = volumes;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy