You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by tm...@apache.org on 2022/09/16 09:30:47 UTC

[sling-org-apache-sling-distribution-core] branch master updated: SLING-11582 : VaultDistrubtionPackageBuilderFactory mixed up ordering of attribute definition for type (#63)

This is an automated email from the ASF dual-hosted git repository.

tmaret pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-core.git


The following commit(s) were added to refs/heads/master by this push:
     new b5bc06d3 SLING-11582 : VaultDistrubtionPackageBuilderFactory mixed up ordering of attribute definition for type (#63)
b5bc06d3 is described below

commit b5bc06d33259eb2a719f72fb54035b220382e90c
Author: Manas Kumar Maji <ma...@gmail.com>
AuthorDate: Fri Sep 16 15:00:42 2022 +0530

    SLING-11582 : VaultDistrubtionPackageBuilderFactory mixed up ordering of attribute definition for type (#63)
---
 .../impl/vlt/VaultDistributionPackageBuilderFactory.java          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java b/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
index 05c888f9..5e16a05b 100644
--- a/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
+++ b/src/main/java/org/apache/sling/distribution/serialization/impl/vlt/VaultDistributionPackageBuilderFactory.java
@@ -68,15 +68,15 @@ import java.util.Map;
 @Designate(ocd=VaultDistributionPackageBuilderFactory.Config.class, factory=true)
 public class VaultDistributionPackageBuilderFactory implements DistributionPackageBuilder {
     
-    @ObjectClassDefinition(name="pache Sling Distribution Packaging - Vault Package Builder Factory",
+    @ObjectClassDefinition(name="Apache Sling Distribution Packaging - Vault Package Builder Factory",
             description = "OSGi configuration for vault package builders")
     public @interface Config {
         @AttributeDefinition(name="name",description = "The name of the package builder.")
         String name();
         @AttributeDefinition(options = {
-                @Option(label = "jcrvlt", value = "jcr packages"),
-                @Option(label = "filevlt",value = "file packages"),
-                @Option(label = "inmemory",value = "in memory packages")},
+                @Option(label = "jcr packages", value = "jcrvlt"),
+                @Option(label = "file packages",value = "filevlt"),
+                @Option(label = "in memory packages",value = "inmemory")},
                 name = "type", description = "The type of this package builder")
         String type() default "jcrvlt";
         @AttributeDefinition(name="Import Mode", description = "The vlt import mode for created packages.")