package inner_element_value_objects; import java.io.Serializable; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}int"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public interface Volume extends Serializable { /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ String getName(); /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ void setName(String value); /** * Gets the value of the capacity property. * */ int getCapacity(); /** * Sets the value of the capacity property. * */ void setCapacity(int value); }