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

com.cisco.trex.stateless.model.port.PortVlan Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.stateless.model.port;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class PortVlan {
  @JsonProperty("tags")
  public List tags;

  @JsonProperty("tags")
  public List getTags() {
    return tags;
  }

  @JsonProperty("tags")
  public void setTags(List tags) {
    this.tags = tags;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy