1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.index;
20
21
22
23
24
25
26
27 public interface OSGI {
28
29
30
31
32 String OSGI_NAMESPACE = "urn:osgi#";
33
34 Field SYMBOLIC_NAME = new Field(null, OSGI_NAMESPACE, "symbolicName", "Bundle Symbolic Name");
35
36 Field VERSION = new Field(null, OSGI_NAMESPACE, "version", "Bundle Version");
37
38 Field EXPORT_PACKAGE = new Field(null, OSGI_NAMESPACE, "exportPackage", "Bundle Export-Package");
39
40
41
42
43
44
45
46 @Deprecated
47 Field EXPORT_SERVICE = new Field(null, OSGI_NAMESPACE, "exportService", "Bundle Export-Service");
48
49 Field DESCRIPTION = new Field(null, OSGI_NAMESPACE, "bundleDescription", "Bundle-Description");
50
51 Field NAME = new Field(null, OSGI_NAMESPACE, "bundleName", "Bundle-Name");
52
53 Field LICENSE = new Field(null, OSGI_NAMESPACE, "bundleLicense", "Bundle-License");
54
55 Field DOCURL = new Field(null, OSGI_NAMESPACE, "bundleDocUrl", "Bundle-DocURL");
56
57 Field IMPORT_PACKAGE = new Field(null, OSGI_NAMESPACE, "importPackage", "Import-Package");
58
59 Field REQUIRE_BUNDLE = new Field(null, OSGI_NAMESPACE, "requireBundle", "Require-Bundle");
60
61
62
63
64
65
66
67
68 Field PROVIDE_CAPABILITY = new Field(null, OSGI_NAMESPACE, "provideCapability", "Bundle Provide-Capability");
69
70
71
72
73
74
75
76 Field REQUIRE_CAPABILITY = new Field(null, OSGI_NAMESPACE, "requireCapability", "Bundle Require-Capability");
77
78
79
80
81
82
83 Field SHA256 = new Field(null, OSGI_NAMESPACE, "sha256", "SHA-256 checksum");
84
85
86
87
88
89
90 Field FRAGMENT_HOST = new Field(null, OSGI_NAMESPACE, "fragmentHost", "Bundle Fragment-Host");
91
92
93
94
95
96
97 Field BUNDLE_REQUIRED_EXECUTION_ENVIRONMENT =
98 new Field(null, OSGI_NAMESPACE, "bree", "Bundle Required Execution Environment");
99 }