fixed property metadata annotation names

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@907188 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/PropertiesInfo.java b/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Properties.java
similarity index 96%
rename from dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/PropertiesInfo.java
rename to dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Properties.java
index 3c972e3..c949c6a 100644
--- a/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/PropertiesInfo.java
+++ b/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Properties.java
@@ -25,12 +25,12 @@
 
 /**
  * Describes configuration properties MetaData informations. This annotation is used to generate
- * a MetaType xml file under OSGI-INF/metatype/metatype.xml and is used to expose
+ * a MetaType xml file under OSGI-INF/metatype/metatype.xml and is used to configure
  * Service Component properties through web console.
  */
 @Retention(RetentionPolicy.CLASS)
 @Target(ElementType.TYPE)
-public @interface PropertiesInfo
+public @interface Properties
 {
     /**
      * Sets the PID that is associtated whith this annotation. By default, the PID is the full java class name.
@@ -54,7 +54,7 @@
      * The list of properties types used to expose properties in web console. 
      * @return The list of properties types used to expose properties in web console. 
      */
-    PropertyInfo[] properties();
+    Property[] properties();
 
     /**
      * The path for the localization MetaType property files.
diff --git a/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/PropertyInfo.java b/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Property.java
similarity index 98%
rename from dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/PropertyInfo.java
rename to dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Property.java
index fc38bb3..36507ae 100644
--- a/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/PropertyInfo.java
+++ b/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/Property.java
@@ -28,7 +28,7 @@
  */
 @Retention(RetentionPolicy.CLASS)
 @Target(ElementType.ANNOTATION_TYPE)
-public @interface PropertyInfo
+public @interface Property
 {
     /**
      * The label used to display the property. Example: "Log Level".