You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2012/07/08 15:52:53 UTC

git commit: DELTASPIKE-196 remove eager() flag from ConfigProperties

Updated Branches:
  refs/heads/master 1945a740b -> b545440ad


DELTASPIKE-196 remove eager() flag from ConfigProperties


Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/b545440a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/b545440a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/b545440a

Branch: refs/heads/master
Commit: b545440adf929b0bef905d003ef88983199e52ce
Parents: 1945a74
Author: Mark Struberg <st...@apache.org>
Authored: Sun Jul 8 15:49:54 2012 +0200
Committer: Mark Struberg <st...@apache.org>
Committed: Sun Jul 8 15:49:54 2012 +0200

----------------------------------------------------------------------
 .../core/api/config/annotation/ConfigProperty.java |   15 ---------------
 1 files changed, 0 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/b545440a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/annotation/ConfigProperty.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/annotation/ConfigProperty.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/annotation/ConfigProperty.java
index 50ca442..7145506 100644
--- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/annotation/ConfigProperty.java
+++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/config/annotation/ConfigProperty.java
@@ -73,19 +73,4 @@ public @interface ConfigProperty
      */
     @Nonbinding
     String defaultValue() default NULL;
-
-    /**
-     * <p>Per default all properties are validated during the bootstrapping process of the CDI container.
-     * If it can't be resolved, the bootstrapping will fail.</p>
-     *
-     * <p>Set it to true if the property will be set dynamically e.g. during the bootstrapping process and
-     * it will be stored in a dynamic data-store like data-base.</p>
-     *
-     * <p>This flag has no effect if a {@link #defaultValue()} is set!</p>
-     *
-     * @return true if the property has to be available from the very beginning, false otherwise
-     */
-    //X TODO fix it (broken since c0e020943ca7d4eeba1e8810cf1b55dcbab422a4)
-    @Nonbinding
-    boolean eager() default true;
 }