0a6f1640cd7d49113c570be4ae1cb4968a8188f2
[onosfw.git] /
1 package org.onosproject.incubator.store.resource.impl;
2
3 import org.onosproject.store.cluster.messaging.MessageSubject;
4
5 public final class LabelResourceMessageSubjects {
6
7     private LabelResourceMessageSubjects() {
8     }
9     public static final MessageSubject LABEL_POOL_CREATED
10                         = new MessageSubject("label-resource-pool-created");
11     public static final MessageSubject LABEL_POOL_DESTROYED
12                         = new MessageSubject("label-resource-pool-destroyed");
13     public static final MessageSubject LABEL_POOL_APPLY
14                         = new MessageSubject("label-resource-pool-apply");
15     public static final MessageSubject LABEL_POOL_RELEASE
16                         = new MessageSubject("label-resource-pool-release");
17 }