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

com.cisco.trex.stateless.model.port.PortMulticastAttribute 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;

@JsonIgnoreProperties(ignoreUnknown = true)
public class PortMulticastAttribute {

  @JsonProperty("multicast")
  private boolean enabled;

  @JsonProperty("multicast")
  public boolean getEnabled() {
    return enabled;
  }

  @JsonProperty("multicast")
  public void setEnabled(boolean enabled) {
    this.enabled = enabled;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy