[jboss-svn-commits] JBoss Common SVN: r3710 - in arquillian/trunk: api/src/main/java/org/jboss/arquillian/api/container and 6 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sun Nov 15 09:52:48 EST 2009
Author: aslak
Date: 2009-11-15 09:52:47 -0500 (Sun, 15 Nov 2009)
New Revision: 3710
Modified:
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/ArchiveGenerator.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Controlable.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployer.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployment.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestMethodExecutor.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestResult.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerController.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerDeployer.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ForceRestartController.java
arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/NoContainerController.java
arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManager.java
arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManagerBean.java
arquillian/trunk/demo/src/test/java/com/acme/ejb/GreetingManagerTest.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTest.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTestBuilder.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/JbossEmbeddedContainer.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/NullArtifactGenerator.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/ServletMethodExecutor.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/TestResultImpl.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/UserCreatedArchiveGenerator.java
arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/runner/servlet/InContainerListener.java
arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/Arquillian.java
arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/ServletTestRunner.java
arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java
Log:
ARQ-19 Added CopyRight comments
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/ArchiveGenerator.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/ArchiveGenerator.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/ArchiveGenerator.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api;
import org.jboss.shrinkwrap.api.Archive;
@@ -2,2 +18,8 @@
+/**
+ * ArchiveGenerator
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public interface ArchiveGenerator
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Controlable.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Controlable.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Controlable.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,6 +1,28 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api;
// TODO: throws ControllerException
+/**
+ * Controlable
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public interface Controlable
{
void start() throws Exception;
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployer.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployer.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployer.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api;
import org.jboss.shrinkwrap.api.Archive;
@@ -3,4 +19,10 @@
import org.jboss.tmpdpl.api.container.DeploymentException;
+/**
+ * Deployer
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public interface Deployer
{
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployment.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployment.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/Deployment.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@@ -7,6 +23,12 @@
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
+/**
+ * Deployment
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
@Documented
@Retention(RUNTIME)
@Target(ElementType.METHOD)
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestMethodExecutor.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestMethodExecutor.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestMethodExecutor.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api;
import java.lang.reflect.Method;
@@ -2,2 +18,8 @@
+/**
+ * TestMethodExecutor
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public interface TestMethodExecutor
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestResult.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestResult.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/TestResult.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api;
import java.io.Serializable;
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerController.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerController.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerController.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api.container;
import org.jboss.arquillian.api.Controlable;
@@ -3,4 +19,10 @@
import org.jboss.tmpdpl.api.shrinkwrap.container.ArchiveContainer;
+/**
+ * ContainerController
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class ContainerController implements Controlable
{
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerDeployer.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerDeployer.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ContainerDeployer.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api.container;
import org.jboss.arquillian.api.Deployer;
@@ -5,6 +21,12 @@
import org.jboss.tmpdpl.api.container.DeploymentException;
import org.jboss.tmpdpl.api.shrinkwrap.container.ArchiveContainer;
+/**
+ * ContainerDeployer
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class ContainerDeployer implements Deployer
{
private ArchiveContainer container;
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ForceRestartController.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ForceRestartController.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/ForceRestartController.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api.container;
import org.jboss.arquillian.api.Controlable;
@@ -3,4 +19,10 @@
import org.jboss.tmpdpl.api.shrinkwrap.container.ArchiveContainer;
+/**
+ * ForceRestartController
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class ForceRestartController implements Controlable
{
Modified: arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/NoContainerController.java
===================================================================
--- arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/NoContainerController.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/api/src/main/java/org/jboss/arquillian/api/container/NoContainerController.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.api.container;
import org.jboss.arquillian.api.Controlable;
@@ -3,4 +19,10 @@
import org.jboss.tmpdpl.api.shrinkwrap.container.ArchiveContainer;
+/**
+ * NoContainerController
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class NoContainerController implements Controlable
{
Modified: arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManager.java
===================================================================
--- arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManager.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManager.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,5 +1,27 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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 com.acme.ejb;
+/**
+ * GreetingManager
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public interface GreetingManager
{
String greet(String userName);
Modified: arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManagerBean.java
===================================================================
--- arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManagerBean.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/demo/src/main/java/com/acme/ejb/GreetingManagerBean.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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 com.acme.ejb;
import javax.ejb.Local;
@@ -3,4 +19,10 @@
import javax.ejb.Stateless;
+/**
+ * GreetingManagerBean
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
@Local(GreetingManager.class)
@Stateless
Modified: arquillian/trunk/demo/src/test/java/com/acme/ejb/GreetingManagerTest.java
===================================================================
--- arquillian/trunk/demo/src/test/java/com/acme/ejb/GreetingManagerTest.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/demo/src/test/java/com/acme/ejb/GreetingManagerTest.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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 com.acme.ejb;
import javax.ejb.EJB;
@@ -11,6 +27,12 @@
import org.junit.Test;
import org.junit.runner.RunWith;
+/**
+ * GreetingManagerTest
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
@RunWith(Arquillian.class)
public class GreetingManagerTest
{
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTest.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTest.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTest.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import java.lang.annotation.Annotation;
@@ -12,6 +28,12 @@
import org.jboss.arquillian.api.TestMethodExecutor;
import org.jboss.shrinkwrap.api.Archive;
+/**
+ * DeployableTest
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class DeployableTest
{
private static boolean inContainer = false;
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTestBuilder.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTestBuilder.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/DeployableTestBuilder.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import javax.security.auth.login.Configuration;
@@ -7,6 +23,12 @@
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.tmpdpl.api.container.DeploymentException;
+/**
+ * DeployableTestBuilder
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class DeployableTestBuilder
{
private DeployableTestBuilder() {}
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/JbossEmbeddedContainer.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/JbossEmbeddedContainer.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/JbossEmbeddedContainer.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import org.jboss.arquillian.api.Controlable;
@@ -7,6 +23,12 @@
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.tmpdpl.api.container.DeploymentException;
+/**
+ * JbossEmbeddedContainer
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class JbossEmbeddedContainer implements Controlable, Deployer
{
private JBossASEmbeddedServer server;
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/NullArtifactGenerator.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/NullArtifactGenerator.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/NullArtifactGenerator.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import org.jboss.arquillian.api.ArchiveGenerator;
@@ -3,4 +19,10 @@
import org.jboss.shrinkwrap.api.Archive;
+/**
+ * NullArtifactGenerator
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class NullArtifactGenerator implements ArchiveGenerator
{
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/ServletMethodExecutor.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/ServletMethodExecutor.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/ServletMethodExecutor.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import java.io.IOException;
@@ -10,6 +26,12 @@
import org.jboss.arquillian.api.TestMethodExecutor;
import org.jboss.arquillian.api.TestResult;
+/**
+ * ServletMethodExecutor
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class ServletMethodExecutor implements TestMethodExecutor
{
private TestMethodExecutor originalExecutor;
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/TestResultImpl.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/TestResultImpl.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/TestResultImpl.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import org.jboss.arquillian.api.TestResult;
@@ -2,2 +18,8 @@
+/**
+ * TestResultImpl
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class TestResultImpl implements TestResult
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/UserCreatedArchiveGenerator.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/UserCreatedArchiveGenerator.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/UserCreatedArchiveGenerator.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl;
import java.lang.reflect.Method;
@@ -6,6 +22,12 @@
import org.jboss.arquillian.api.Deployment;
import org.jboss.shrinkwrap.api.Archive;
+/**
+ * UserCreatedArchiveGenerator
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class UserCreatedArchiveGenerator implements ArchiveGenerator
{
Modified: arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/runner/servlet/InContainerListener.java
===================================================================
--- arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/runner/servlet/InContainerListener.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/impl-base/src/main/java/org/jboss/arquillian/impl/runner/servlet/InContainerListener.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.impl.runner.servlet;
import javax.servlet.ServletContextEvent;
@@ -5,6 +21,12 @@
import org.jboss.arquillian.impl.DeployableTest;
+/**
+ * InContainerListener
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class InContainerListener implements ServletContextListener
{
@Override
Modified: arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/Arquillian.java
===================================================================
--- arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/Arquillian.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/Arquillian.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.junit;
import java.lang.reflect.Method;
@@ -20,6 +36,12 @@
import org.junit.runners.model.Statement;
// TODO: where to put start/stop container..
+/**
+ * Arquillian
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class Arquillian extends BlockJUnit4ClassRunner
{
private static DeployableTest deployableTest;
Modified: arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/ServletTestRunner.java
===================================================================
--- arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/ServletTestRunner.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/junit/src/main/java/org/jboss/arquillian/junit/ServletTestRunner.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.junit;
import java.io.IOException;
@@ -16,6 +32,12 @@
import org.junit.runner.Request;
import org.junit.runner.Result;
+/**
+ * ServletTestRunner
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
public class ServletTestRunner extends HttpServlet
{
Modified: arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java
===================================================================
--- arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java 2009-11-15 14:46:37 UTC (rev 3709)
+++ arquillian/trunk/junit/src/test/java/org/jboss/arquillian/junit/APITestCase.java 2009-11-15 14:52:47 UTC (rev 3710)
@@ -1,3 +1,19 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * Licensed 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.jboss.arquillian.junit;
import org.jboss.arquillian.api.Deployment;
@@ -7,6 +23,12 @@
import org.junit.Test;
import org.junit.runner.RunWith;
+/**
+ * APITestCase
+ *
+ * @author <a href="mailto:aslak at conduct.no">Aslak Knutsen</a>
+ * @version $Revision: $
+ */
@RunWith(Arquillian.class)
public class APITestCase
{
More information about the jboss-svn-commits
mailing list