aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/incubator/store/src/main/java/org/onosproject/incubator/store/resource/impl/LabelResourceMessageSubjects.java
blob: 0a6f1640cd7d49113c570be4ae1cb4968a8188f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.onosproject.incubator.store.resource.impl;

import org.onosproject.store.cluster.messaging.MessageSubject;

public final class LabelResourceMessageSubjects {

    private LabelResourceMessageSubjects() {
    }
    public static final MessageSubject LABEL_POOL_CREATED
                        = new MessageSubject("label-resource-pool-created");
    public static final MessageSubject LABEL_POOL_DESTROYED
                        = new MessageSubject("label-resource-pool-destroyed");
    public static final MessageSubject LABEL_POOL_APPLY
                        = new MessageSubject("label-resource-pool-apply");
    public static final MessageSubject LABEL_POOL_RELEASE
                        = new MessageSubject("label-resource-pool-release");
}