You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by gp...@apache.org on 2013/04/01 00:05:05 UTC

[7/8] git commit: DELTASPIKE-337 unified package org.apache.deltaspike.partialbean.api

DELTASPIKE-337 unified package org.apache.deltaspike.partialbean.api


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

Branch: refs/heads/master
Commit: 79cc8b21ebf07d22a3a6eabb1aae8f8facfd1eb8
Parents: 9788220
Author: gpetracek <gp...@apache.org>
Authored: Sun Mar 31 23:51:48 2013 +0200
Committer: gpetracek <gp...@apache.org>
Committed: Sun Mar 31 23:51:48 2013 +0200

----------------------------------------------------------------------
 .../partialbean/api/PartialBeanBinding.java        |   31 +++++++++++++++
 .../api/annotation/PartialBeanBinding.java         |   31 ---------------
 .../impl/PartialBeanBindingExtension.java          |    2 +-
 .../partialbean/shared/TestPartialBeanBinding.java |    2 +-
 4 files changed, 33 insertions(+), 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/79cc8b21/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/PartialBeanBinding.java
----------------------------------------------------------------------
diff --git a/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/PartialBeanBinding.java b/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/PartialBeanBinding.java
new file mode 100644
index 0000000..a4ef136
--- /dev/null
+++ b/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/PartialBeanBinding.java
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.deltaspike.partialbean.api;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+@Retention(RUNTIME)
+@Target(ANNOTATION_TYPE)
+public @interface PartialBeanBinding
+{
+}

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/79cc8b21/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/annotation/PartialBeanBinding.java
----------------------------------------------------------------------
diff --git a/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/annotation/PartialBeanBinding.java b/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/annotation/PartialBeanBinding.java
deleted file mode 100644
index 411c043..0000000
--- a/deltaspike/modules/partial-bean/api/src/main/java/org/apache/deltaspike/partialbean/api/annotation/PartialBeanBinding.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.deltaspike.partialbean.api.annotation;
-
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
-@Retention(RUNTIME)
-@Target(ANNOTATION_TYPE)
-public @interface PartialBeanBinding
-{
-}

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/79cc8b21/deltaspike/modules/partial-bean/impl/src/main/java/org/apache/deltaspike/partialbean/impl/PartialBeanBindingExtension.java
----------------------------------------------------------------------
diff --git a/deltaspike/modules/partial-bean/impl/src/main/java/org/apache/deltaspike/partialbean/impl/PartialBeanBindingExtension.java b/deltaspike/modules/partial-bean/impl/src/main/java/org/apache/deltaspike/partialbean/impl/PartialBeanBindingExtension.java
index 59c2d2c..fcc8abf 100644
--- a/deltaspike/modules/partial-bean/impl/src/main/java/org/apache/deltaspike/partialbean/impl/PartialBeanBindingExtension.java
+++ b/deltaspike/modules/partial-bean/impl/src/main/java/org/apache/deltaspike/partialbean/impl/PartialBeanBindingExtension.java
@@ -23,7 +23,7 @@ import org.apache.deltaspike.core.util.ClassDeactivationUtils;
 import org.apache.deltaspike.core.util.ClassUtils;
 import org.apache.deltaspike.core.util.bean.BeanBuilder;
 import org.apache.deltaspike.core.util.metadata.builder.AnnotatedTypeBuilder;
-import org.apache.deltaspike.partialbean.api.annotation.PartialBeanBinding;
+import org.apache.deltaspike.partialbean.api.PartialBeanBinding;
 
 import javax.enterprise.event.Observes;
 import javax.enterprise.inject.spi.AfterBeanDiscovery;

http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/79cc8b21/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/shared/TestPartialBeanBinding.java
----------------------------------------------------------------------
diff --git a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/shared/TestPartialBeanBinding.java b/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/shared/TestPartialBeanBinding.java
index be4c389..188754d 100644
--- a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/shared/TestPartialBeanBinding.java
+++ b/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/shared/TestPartialBeanBinding.java
@@ -18,7 +18,7 @@
  */
 package org.apache.deltaspike.test.core.api.partialbean.shared;
 
-import org.apache.deltaspike.partialbean.api.annotation.PartialBeanBinding;
+import org.apache.deltaspike.partialbean.api.PartialBeanBinding;
 
 import java.lang.annotation.Retention;
 import java.lang.annotation.Target;