Skip to content

Commit

Permalink
Added Capability and Requirement to assist with correct resolution.
Browse files Browse the repository at this point in the history
Signed-off-by: David Leangen <osgi@leangen.net>
  • Loading branch information
David Leangen committed Mar 11, 2024
1 parent 84f645b commit aed98c6
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*********************************************************************
* Copyright (c) 2024 Contributors to the Eclipse Foundation.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Kentyou - initial implementation
**********************************************************************/
package org.eclipse.sensinact.gateway.commands.gogo;

@org.osgi.annotation.bundle.Capability(
namespace = "org.apache.felix.gogo",
name = "command.implementation",
version = "1.0.0"
)
@org.osgi.annotation.bundle.Requirement(
effective = "active",
namespace = "org.apache.felix.gogo",
name = "runtime.implementation",
version = "1.0.0"
)
/**
* Declare Requirements and Capabilities using OSGi annotations.
*
* @author David Leangen
*/
public class SensiNactCommands {

}

0 comments on commit aed98c6

Please sign in to comment.