blob: 4a7cb46e1ba2f41a056d3094c6947a9ae3fd537d [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Madan Jampani2ff05592014-10-10 15:42:47 -070016package org.onlab.onos.store.link.impl;
17
18import org.onlab.onos.store.cluster.messaging.MessageSubject;
19
20/**
21 * MessageSubjects used by GossipLinkStore peer-peer communication.
22 */
23public final class GossipLinkStoreMessageSubjects {
24
25 private GossipLinkStoreMessageSubjects() {}
26
Madan Jampania97e8202014-10-10 17:01:33 -070027 public static final MessageSubject LINK_UPDATE =
28 new MessageSubject("peer-link-update");
29 public static final MessageSubject LINK_REMOVED =
30 new MessageSubject("peer-link-removed");
31 public static final MessageSubject LINK_ANTI_ENTROPY_ADVERTISEMENT =
32 new MessageSubject("link-enti-entropy-advertisement");
Madan Jampani2ff05592014-10-10 15:42:47 -070033}