blob: 8795160e76761fd453a498cf476e43de3a1b744e [file] [log] [blame]
Pierre De Rop8be50732009-12-04 22:18:54 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Marcel Offermans8b93efa2010-07-02 18:27:21 +000019package org.apache.felix.dm;
Pierre De Rop8be50732009-12-04 22:18:54 +000020
Marcel Offermans5be5f142011-04-26 10:47:12 +000021import org.osgi.framework.BundleContext;
22
Pierre De Rop8be50732009-12-04 22:18:54 +000023/**
Marcel Offermansfaaed472010-09-08 10:07:32 +000024 * Describes a component. Component declarations form descriptions of components
Pierre De Rop8be50732009-12-04 22:18:54 +000025 * that are managed by the dependency manager. They can be used to query their state
26 * for monitoring tools. The dependency manager shell command is an example of
27 * such a tool.
28 *
29 * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
30 */
Marcel Offermansfaaed472010-09-08 10:07:32 +000031public interface ComponentDeclaration {
Pierre De Rop8be50732009-12-04 22:18:54 +000032 /** Names for the states of this component. */
33 public static final String[] STATE_NAMES = { "unregistered", "registered" };
34 /** State constant for an unregistered component. */
35 public static final int STATE_UNREGISTERED = 0;
36 /** State constant for a registered component. */
37 public static final int STATE_REGISTERED = 1;
Marcel Offermansfaaed472010-09-08 10:07:32 +000038 /** Returns a list of dependencies associated with this component. */
39 public ComponentDependencyDeclaration[] getComponentDependencies();
40 /** Returns the name of this component. */
Pierre De Rop8be50732009-12-04 22:18:54 +000041 public String getName();
Marcel Offermansfaaed472010-09-08 10:07:32 +000042 /** Returns the state of this component. */
Pierre De Rop8be50732009-12-04 22:18:54 +000043 public int getState();
Marcel Offermans5be5f142011-04-26 10:47:12 +000044 /** Returns the bundle context associated with this component. */
45 public BundleContext getBundleContext();
Pierre De Rop8be50732009-12-04 22:18:54 +000046}