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

org.openstack4j.model.storage.block.VolumeTransfer Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.storage.block;

import java.util.Date;
import java.util.List;

import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.common.Link;

/**
 * Represents a Volume Transfer Entity which is used for creating a volume transfer
 * 
 * @author Jeremy Unruh
 */
public interface VolumeTransfer extends ModelEntity {

    /**
     * @return the identifier assigned to the transfer
     */
    String getId();
    
    /**
     * @return indicates the volume identifier of the volume being transfer
     */
    String getVolumeId();
    
    /**
     * @return the name of the transfer
     */
    String getName();
    
    /**
     * @return the authorization key of the transfer
     */
    String getAuthKey();
    
    /**
     * @return the date/time the transfer was created
     */
    Date getCreatedAt();
    
    /**
     * @return List of External Links 
     **/
    List getLinks();
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy