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

com.cisco.trex.stateless.model.RxFeature Maven / Gradle / Ivy

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

public class RxFeature {

  private Type type;

  private Object value;

  public RxFeature(Type type, Object value) {
    this.type = type;
    this.value = value;
  }

  public Type getType() {
    return type;
  }

  public Object getValue() {
    return value;
  }

  public enum Type {
    Queue("queue");

    private String type;

    Type(String type) {
      this.type = type;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy