blob: 08737d622057e057a100982b4de73a69488cc0fa [file] [log] [blame]
Thomas Vachuska4998caa2015-08-26 13:28:38 -07001/*
Thomas Vachuska52f2cd12018-11-08 21:20:04 -08002 * Copyright 2018-present Open Networking Foundation
Thomas Vachuska4998caa2015-08-26 13:28:38 -07003 *
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 */
Thomas Vachuska52f2cd12018-11-08 21:20:04 -080016package org.onosproject.incubator.net.domain;
Thomas Vachuska4998caa2015-08-26 13:28:38 -070017
Thomas Vachuska4c571ae2015-09-10 16:31:59 -070018import com.google.common.annotations.Beta;
Thomas Vachuska4998caa2015-08-26 13:28:38 -070019import org.onosproject.net.config.SubjectFactory;
20
21/**
22 * Set of subject factories for potential configuration subjects.
23 */
Thomas Vachuska4c571ae2015-09-10 16:31:59 -070024@Beta
Thomas Vachuska4998caa2015-08-26 13:28:38 -070025public final class ExtraSubjectFactories {
26
27 // Construction forbidden
28 private ExtraSubjectFactories() {
29 }
30
31 public static final SubjectFactory<IntentDomainId> INTENT_DOMAIN_SUBJECT_FACTORY =
32 new SubjectFactory<IntentDomainId>(IntentDomainId.class, "domains") {
33 @Override
34 public IntentDomainId createSubject(String key) {
35 return IntentDomainId.valueOf(key);
36 }
37 };
38
39}