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

com.glookast.commons.templates.EditShareFlowStorageSystem Maven / Gradle / Ivy

package com.glookast.commons.templates;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for EditShareFlowStorageSystem complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * 
*/ @EqualsAndHashCode(callSuper = true) @Data @AllArgsConstructor @NoArgsConstructor @SuperBuilder(toBuilder = true) @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EditShareFlowStorageSystem", propOrder = { "hostname", "port", "ssl", "username", "password", "storageURL", "mediaSpace", "hasFlowProxy" }) @JsonInclude(JsonInclude.Include.NON_NULL) @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, defaultImpl = EditShareFlowStorageSystem.class) public class EditShareFlowStorageSystem extends StorageSystem { protected String hostname; @XmlSchemaType(name = "unsignedShort") protected int port; protected boolean ssl; protected String username; protected String password; protected String storageURL; protected String mediaSpace; protected boolean flowProxy; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy