blob: 653f7df7c885de36020d7ed765e890a557eeb76e [file] [log] [blame]
Jonathan Hartb4a42152015-12-08 17:06:30 -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 */
16
17package org.onosproject.incubator.component;
18
19import org.onosproject.core.ApplicationId;
20
21/**
22 * Service for managing the components in the system.
23 */
24public interface ComponentService {
25
26 /**
27 * Activates the component identified by the given name. If the component
28 * is not currently available, it will be activated when it becomes
29 * available.
30 *
31 * @param appId application ID of the requesting application
32 * @param name fully-qualified name of the component to activate
33 */
34 void activate(ApplicationId appId, String name);
35
36 /**
37 * Deactivates the component identified by the given name.
38 *
39 * @param appId application ID of the requesting application
40 * @param name fully-qualified name of the component to deactivate
41 */
42 void deactivate(ApplicationId appId, String name);
43}