Updated Branches: refs/heads/master 1931c6297 -> 50fc96e41
http://git-wip-us.apache.org/repos/asf/deltaspike/blob/50fc96e4/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanX.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanX.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanX.java new file mode 100644 index 0000000..41daa8e --- /dev/null +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanX.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.test.core.api.scope.conversation.subgroup.uc003; + +import org.apache.deltaspike.core.api.scope.ConversationGroup; +import org.apache.deltaspike.core.api.scope.GroupedConversationScoped; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestBaseBean; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestGroup; + +@GroupedConversationScoped +@ConversationGroup(TestGroup.class) +public class TestBeanX extends TestBaseBean implements TestSubGroupContract<String> +{ + private static final long serialVersionUID = -1291355584482007178L; +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/50fc96e4/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanY.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanY.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanY.java new file mode 100644 index 0000000..5014f4b --- /dev/null +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanY.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.test.core.api.scope.conversation.subgroup.uc003; + +import org.apache.deltaspike.core.api.scope.ConversationGroup; +import org.apache.deltaspike.core.api.scope.GroupedConversationScoped; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestBaseBean; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestGroup; + +@GroupedConversationScoped +@ConversationGroup(TestGroup.class) +public class TestBeanY extends TestBaseBean +{ + private static final long serialVersionUID = -1291355584482007178L; +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/50fc96e4/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanZ.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanZ.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanZ.java new file mode 100644 index 0000000..27facc6 --- /dev/null +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestBeanZ.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.test.core.api.scope.conversation.subgroup.uc003; + +import org.apache.deltaspike.core.api.scope.ConversationGroup; +import org.apache.deltaspike.core.api.scope.GroupedConversationScoped; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestBaseBean; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestGroup; + +@GroupedConversationScoped +@ConversationGroup(TestGroup.class) +public class TestBeanZ extends TestBaseBean implements TestSubGroupContract<String> +{ + private static final long serialVersionUID = -1291355584482007178L; +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/50fc96e4/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestImplicitSubGroup.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestImplicitSubGroup.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestImplicitSubGroup.java new file mode 100644 index 0000000..e24fb6d --- /dev/null +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestImplicitSubGroup.java @@ -0,0 +1,27 @@ +/* + * 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.test.core.api.scope.conversation.subgroup.uc003; + +import org.apache.deltaspike.core.api.scope.ConversationSubGroup; +import org.apache.deltaspike.test.core.api.scope.conversation.subgroup.shared.TestGroup; + +@ConversationSubGroup(of = TestGroup.class, subGroup = {TestSubGroupContract.class}) +public interface TestImplicitSubGroup +{ +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/50fc96e4/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestSubGroupContract.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestSubGroupContract.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestSubGroupContract.java new file mode 100644 index 0000000..874f696 --- /dev/null +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/api/scope/conversation/subgroup/uc003/TestSubGroupContract.java @@ -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.deltaspike.test.core.api.scope.conversation.subgroup.uc003; + +public interface TestSubGroupContract<T> +{ + T getValue(); +}
