Open Kilda Java Documentation
StormNodeId.java
Go to the documentation of this file.
1 package org.openkilda.wfm.topology.cache;
2 
3 public enum StormNodeId {
4  ;
5 
6  private final String id;
7 
8  StormNodeId(String id) {
9  this.id = id;
10  }
11 
12  public String getId() {
13  return id;
14  }
15 }
id
Definition: nodes.py:55