Author: struberg
Date: Sun May 31 07:55:14 2015
New Revision: 1682689

URL: http://svn.apache.org/r1682689
Log:
OWB-654 fix manual lookup of beans with generic types

Missed to add a few classes from the patch.
Txs to Daniel Cunha (soro) for the patch!


Added:
    
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyAbstract.java
   (with props)
    
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyBean.java
   (with props)
    
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyInterface.java
   (with props)
    
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBean.java
   (with props)
    
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBeanAbstract.java
   (with props)

Added: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyAbstract.java
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyAbstract.java?rev=1682689&view=auto
==============================================================================
--- 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyAbstract.java
 (added)
+++ 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyAbstract.java
 Sun May 31 07:55:14 2015
@@ -0,0 +1,24 @@
+/*
+ * 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.webbeans.test.injection.generics;
+
+public abstract class MyAbstract<T>
+{
+    abstract T getValue();
+}

Propchange: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyAbstract.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyBean.java
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyBean.java?rev=1682689&view=auto
==============================================================================
--- 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyBean.java
 (added)
+++ 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyBean.java
 Sun May 31 07:55:14 2015
@@ -0,0 +1,43 @@
+/*
+ * 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.webbeans.test.injection.generics;
+
+import org.apache.webbeans.component.InstanceBean;
+
+import javax.enterprise.inject.Instance;
+import javax.inject.Inject;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+public class MyBean
+{
+    @Inject
+    private Instance<MyInterface> stringBean;
+
+    @Inject
+    private Instance<MyAbstract> stringAbstractBean;
+
+    public void checkAll() {
+        assertNotNull(stringBean);
+        assertNotNull(stringAbstractBean);
+        assertEquals(StringBean.class.getName(), stringBean.get().getValue());
+        assertEquals(StringBeanAbstract.class.getName(), 
stringAbstractBean.get().getValue());
+    }
+}

Propchange: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyInterface.java
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyInterface.java?rev=1682689&view=auto
==============================================================================
--- 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyInterface.java
 (added)
+++ 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyInterface.java
 Sun May 31 07:55:14 2015
@@ -0,0 +1,24 @@
+/*
+ * 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.webbeans.test.injection.generics;
+
+public interface MyInterface<T>
+{
+    T getValue();
+}

Propchange: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/MyInterface.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBean.java
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBean.java?rev=1682689&view=auto
==============================================================================
--- 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBean.java
 (added)
+++ 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBean.java
 Sun May 31 07:55:14 2015
@@ -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.webbeans.test.injection.generics;
+
+import javax.enterprise.context.ApplicationScoped;
+
+@ApplicationScoped
+public class StringBean implements MyInterface<String>
+{
+    @Override
+    public String getValue()
+    {
+        return getClass().getName();
+    }
+}

Propchange: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBeanAbstract.java
URL: 
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBeanAbstract.java?rev=1682689&view=auto
==============================================================================
--- 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBeanAbstract.java
 (added)
+++ 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBeanAbstract.java
 Sun May 31 07:55:14 2015
@@ -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.webbeans.test.injection.generics;
+
+import javax.enterprise.context.ApplicationScoped;
+
+@ApplicationScoped
+public class StringBeanAbstract extends MyAbstract<String>
+{
+    @Override
+    public String getValue()
+    {
+        return getClass().getName();
+    }
+}

Propchange: 
openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/injection/generics/StringBeanAbstract.java
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to