blob: d6daeb9726673ab7da8bb3ec322f5d62a18e0097 [file] [log] [blame]
Jonathan Hart5573d322015-01-21 10:13:25 -08001/*
2 * Copyright 2015 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 */
16package org.onosproject.store.intent.impl;
17
18import org.onosproject.store.cluster.messaging.MessageSubject;
19
20/**
21 * Message subjects for internal gossip intent store node-to-node messages.
22 */
23public final class GossipIntentStoreMessageSubjects {
24 private GossipIntentStoreMessageSubjects() {}
25
26 public static final MessageSubject INTENT_UPDATED_MSG
27 = new MessageSubject("peer-intent-updated");
28 public static final MessageSubject INTENT_SET_INSTALLABLES_MSG
29 = new MessageSubject("peer-intent-set-installables");
30 public static final MessageSubject INTENT_ANTI_ENTROPY_ADVERTISEMENT
31 = new MessageSubject("intent-anti-entropy-advertisement");
32}