Created
December 13, 2021 11:46
-
-
Save stormworm29/0e96a97f33188632e0d946152f312797 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mysite.core.config; | |
import org.osgi.service.metatype.annotations.AttributeDefinition; | |
import org.osgi.service.metatype.annotations.ObjectClassDefinition; | |
@ObjectClassDefinition( | |
name = "OSGI Configuration", | |
description = " OSGI Configuration" | |
) | |
public @interface OSGIClientConfiguration { | |
@AttributeDefinition(name = "config", description = "OSGI Configuration") | |
public String getConfig() default "/content" ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment