
es.tid.topologyModuleBase.COPServiceTopology.model.TopologiesSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of topology Show documentation
Show all versions of topology Show documentation
Traffic Engineering Database, BGP-LS peer, Topology Module
The newest version!
package es.tid.topologyModuleBase.COPServiceTopology.model;
import java.util.*;
import io.swagger.annotations.*;
import com.fasterxml.jackson.annotation.JsonProperty;
import es.tid.topologyModuleBase.COPServiceTopology.model.Topology;
@ApiModel(description = "")
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JaxRSServerCodegen", date = "2016-05-23T12:45:37.903+02:00")
public class TopologiesSchema {
private List topology = new ArrayList();
/**
**/
@ApiModelProperty(value = "")
@JsonProperty("topology")
public List getTopology() {
return topology;
}
public void setTopology(List topology) {
this.topology = topology;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TopologiesSchema {\n");
sb.append(" topology: ").append(topology).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy