Merge "Add get-config commit edit-config to testtool"
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / api / jmx / constants / ConfigRegistryConstants.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.config.api.jmx.constants;
9
10 import javax.management.MalformedObjectNameException;
11 import javax.management.ObjectName;
12
13 public class ConfigRegistryConstants {
14
15     private ConfigRegistryConstants() {
16     }
17
18     public static final String TYPE_CONFIG_REGISTRY = "ConfigRegistry";
19
20     public static final String ON_DOMAIN = "org.opendaylight.controller";
21
22     public static final String TYPE_KEY = "type";
23
24     public static final ObjectName OBJECT_NAME = createONWithDomainAndType(TYPE_CONFIG_REGISTRY);
25
26     public static final String GET_AVAILABLE_MODULE_NAMES_ATTRIBUT_NAME = "AvailableModuleNames";
27
28     public static ObjectName createONWithDomainAndType(String type) {
29         return createON(ON_DOMAIN, TYPE_KEY, type);
30     }
31
32     public static ObjectName createON(String name, String key, String value) {
33         try {
34             return new ObjectName(name, key, value);
35         } catch (MalformedObjectNameException e) {
36             throw new IllegalArgumentException(e);
37         }
38
39     }
40 }