blob: 15595dd5de2e431007d55280371987301ccb1c6a [file] [log] [blame]
Thomas Vachuskae0f804a2014-10-27 23:40:48 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuskae0f804a2014-10-27 23:40:48 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuskae0f804a2014-10-27 23:40:48 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070015 */
sangyun-han6d33e802016-08-05 13:36:33 +090016package org.onosproject.app;
17
18import org.onosproject.core.ApplicationId;
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070019
20import java.util.Set;
21
22/**
23 * Manages application IDs.
24 */
25public interface ApplicationIdStore {
26
27 /**
28 * Returns the set of currently registered application identifiers.
29 *
30 * @return set of application ids
31 */
32 Set<ApplicationId> getAppIds();
33
34 /**
35 * Returns an existing application id from a given id.
Thomas Vachuska02aeb032015-01-06 22:36:30 -080036 *
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070037 * @param id the short value of the id
Thomas Vachuska02aeb032015-01-06 22:36:30 -080038 * @return an application id; null if no such app registered
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070039 */
40 ApplicationId getAppId(Short id);
41
42 /**
Thomas Vachuska02aeb032015-01-06 22:36:30 -080043 * Returns registered application id from the given name.
44 *
45 * @param name application name
46 * @return an application id; null if no such app registered
47 */
48 ApplicationId getAppId(String name);
49
50 /**
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070051 * Registers a new application by its name, which is expected
52 * to follow the reverse DNS convention, e.g.
53 * {@code org.flying.circus.app}
54 *
55 * @param identifier string identifier
56 * @return the application id
57 */
58 ApplicationId registerApplication(String identifier);
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070059}