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

com.woorea.openstack.cinder.model.VolumeForExtend Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (C) 2016 AT&T Intellectual Property. All rights reserved. This code is licensed under the Apache License, Version 2.0
 *******************************************************************************/

package com.woorea.openstack.cinder.model;

import java.io.Serializable;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;

@JsonRootName("os-extend")
public class VolumeForExtend implements Serializable {

    @JsonProperty("new_size")
    private Integer size;

    /**
     * @return the size
     */
    public Integer getSize() {
        return size;
    }

    /**
     * @param size
     *            the size to set
     */
    public void setSize(Integer size) {
        this.size = size;
    }

    /*
     * (non-Javadoc)
     *
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        return "VolumeForExtend [size=" + size + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy