com.myjeeva.digitalocean.pojo.Volumes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digitalocean-api-client Show documentation
Show all versions of digitalocean-api-client Show documentation
DigitalOcean API Client in Java
/**
* 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;
}
}