Open Kilda Java Documentation
Topic.java
Go to the documentation of this file.
1 /* Copyright 2017 Telstra Open Source
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 package org.openkilda.messaging;
17 
21 @Deprecated
22 public interface Topic {
23 
24  public static final String CTRL = "kilda.ctrl";
25  public static final String FLOW = "kilda.flow";
26  public static final String HEALTH_CHECK = "kilda.health.check";
27  public static final String NORTHBOUND = "kilda.northbound";
28  public static final String OTSDB = "kilda.otsdb";
29  public static final String SIMULATOR = "kilda.simulator";
30  public static final String SPEAKER = "kilda.speaker";
31  public static final String STATS = "kilda.stats";
32  public static final String TOPO_CACHE = "kilda.topo.cache";
33  public static final String TOPO_DISCO = "kilda.topo.disco";
34  public static final String TOPO_ENG = "kilda.topo.eng";
35 
36 }
static final String NORTHBOUND
Definition: Topic.java:27
static final String TOPO_CACHE
Definition: Topic.java:32
static final String TOPO_DISCO
Definition: Topic.java:33
static final String OTSDB
Definition: Topic.java:28
static final String SIMULATOR
Definition: Topic.java:29
static final String CTRL
Definition: Topic.java:24
static final String TOPO_ENG
Definition: Topic.java:34
static final String STATS
Definition: Topic.java:31
static final String SPEAKER
Definition: Topic.java:30
static final String HEALTH_CHECK
Definition: Topic.java:26
static final String FLOW
Definition: Topic.java:25