-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish Subversion to Git SCM migration: remove "@Version $Revision: $…
…" since Git does not support automatic keyword substitution.
- Loading branch information
Showing
456 changed files
with
0 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
* ArquillianDescriptor | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface ArquillianDescriptor extends Descriptor { | ||
EngineDef engine(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
* ContainerDescription | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface ContainerDef extends ArquillianDescriptor { | ||
String getContainerName(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
* DefaultProtocolDescription | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface DefaultProtocolDef extends ArquillianDescriptor { | ||
String getType(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ | |
* EngineDef | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface EngineDef extends ArquillianDescriptor { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
* ExtensionDef | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface ExtensionDef extends ArquillianDescriptor { | ||
String getExtensionName(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
* GroupDescription | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface GroupDef extends ArquillianDescriptor { | ||
String getGroupName(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
* ProtocolDescription | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public interface ProtocolDef extends ContainerDef { | ||
String getType(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ | |
* ArquillianDescriptor | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ArquillianDescriptorImpl extends NodeDescriptorImplBase implements ArquillianDescriptor { | ||
//-------------------------------------------------------------------------------------|| | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ | |
* ContainerDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerDefImpl extends ArquillianDescriptorImpl implements ContainerDef { | ||
private Node container; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
* DefaultProtocolDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class DefaultProtocolDefImpl extends ArquillianDescriptorImpl implements DefaultProtocolDef { | ||
private Node protocol; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
* EngineDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class EngineDefImpl extends ArquillianDescriptorImpl implements EngineDef { | ||
private static final String exportPath = "property@name=deploymentExportPath"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
* ExtensionDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ExtensionDefImpl extends ArquillianDescriptorImpl implements ExtensionDef { | ||
private Node extension; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
* ContainerDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class GroupContainerDefImpl extends ContainerDefImpl implements GroupDef { | ||
private Node group; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
* GroupDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class GroupDefImpl extends ArquillianDescriptorImpl implements GroupDef { | ||
private Node group; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
* ProtocolDefImpl | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ProtocolDefImpl extends ContainerDefImpl implements ProtocolDef { | ||
private Node protocol; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
* ConfigExtension | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ConfigExtension implements LoadableExtension { | ||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ | |
* Configurator | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ConfigurationRegistrar { | ||
public static final String ARQUILLIAN_XML_PROPERTY = "arquillian.xml"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ | |
* FileUtils | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
class FileUtils { | ||
static Properties loadArquillianProperties(String propertyName, String defaultName) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,6 @@ | |
* arq.container.[qualifier].configuration.[property_name]=[ORIGINAL] new-values | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
class PropertiesParser { | ||
private static String ARQ_PROPERTY = "arq\\..*"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ | |
* @author <a href="[email protected]">Claudio Vesco</a> | ||
* @author <a href="mailto:[email protected]">Adrian Brock</a> | ||
* @author <a href="mailto:[email protected]">Dimitris Andreadis</a> | ||
* @version <tt>$Revision: 2898 $</tt> | ||
*/ | ||
public final class StringPropertyReplacer { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,6 @@ | |
* ArquillianDescriptorTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ArquillianDescriptorTestCase { | ||
private static final String CONTAINER_NAME_1 = "jbossas-remote"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ | |
* Simple helper for Xpath related Assertions. | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public final class AssertXPath { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,6 @@ | |
* ConfigurationRegistrarTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
@RunWith(MockitoJUnitRunner.class) | ||
public class ConfigurationRegistrarTestCase extends AbstractManagerTestBase { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ | |
* SystemPropertiesReaderTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class PropertiesParserTestCase { | ||
private static final String ENGINE_PROP_DEPLOYMENTS = "arq.engine.deploymentExportPath"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,6 @@ | |
* ContainerCreationException | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerCreationException extends RuntimeException { | ||
private static final long serialVersionUID = 7783398740102071179L; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ | |
* ContainerExtension | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerExtension implements LoadableExtension { | ||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,6 @@ | |
* Container | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerImpl<T extends ContainerConfiguration> implements Container<T> { | ||
@Inject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ | |
* DefaultServerKillProcessor | ||
* | ||
* @author <a href="mailto:[email protected]">Martin Gencur</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class DefaultServerKillProcessor implements ServerKillProcessor { | ||
private final Logger log = Logger.getLogger(DefaultServerKillProcessor.class.getName()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
* FilteredURLClassLoader | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class FilteredURLClassLoader extends URLClassLoader { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,6 @@ | |
* ContainerManager | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class LocalContainerRegistry implements ContainerRegistry { | ||
private List<Container> containers; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ | |
* MapObjectPopulator | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class MapObject { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ | |
* ThreadContext | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ThreadContext { | ||
private static ThreadLocal<ClassLoader> previousClassloader = new ThreadLocal<ClassLoader>(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ | |
* Activates and DeActivates the Container and Deployment contexts. | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerDeploymentContextHandler { | ||
@Inject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,6 @@ | |
* and handle them inside the same context. | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerDeployController { | ||
@Inject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ | |
* ContainerController | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerLifecycleController { | ||
@Inject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
* OperationResult | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerOperationResult<T> { | ||
private List<Operation<T>> operations; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,6 @@ | |
* ContainerRegistryCreator | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerRegistryCreator { | ||
static final String ARQUILLIAN_LAUNCH_PROPERTY = "arquillian.launch"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,6 @@ | |
* the {@link Deployment}. | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class DeploymentExceptionHandler { | ||
@Inject | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,6 @@ | |
* Used for debugging the deployment. | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ArchiveDeploymentExporter { | ||
private static final Logger log = Logger.getLogger(ArchiveDeploymentExporter.class.getName()); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
* ContainerContext | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class ContainerContextImpl extends AbstractContext<String> implements ContainerContext { | ||
/* (non-Javadoc) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ | |
* ContainerContext | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class DeploymentContextImpl extends AbstractContext<Deployment> implements DeploymentContext { | ||
/* (non-Javadoc) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,6 @@ | |
* DomainModelTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
@RunWith(MockitoJUnitRunner.class) | ||
public class ContainerRegistryTestCase extends AbstractContainerTestBase { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ | |
* MapObjectTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
public class MapObjectTestCase { | ||
private static final String VAL_STRING = "test123"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,6 @@ | |
* ContainerDeployControllerTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
@SuppressWarnings({"unchecked", "rawtypes"}) | ||
@RunWith(MockitoJUnitRunner.class) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,6 @@ | |
* ContainerLifecycleControllerTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
@SuppressWarnings({"unchecked", "rawtypes"}) | ||
@RunWith(MockitoJUnitRunner.class) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,6 @@ | |
* ContainerRegistryCreatorTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
@RunWith(MockitoJUnitRunner.class) | ||
public class ContainerRegistryCreatorTestCase extends AbstractContainerTestBase { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,6 @@ | |
* DeploymentExceptionHandlerTestCase | ||
* | ||
* @author <a href="mailto:[email protected]">Aslak Knutsen</a> | ||
* @version $Revision: $ | ||
*/ | ||
@RunWith(MockitoJUnitRunner.class) | ||
public class DeploymentExceptionHandlerTestCase extends AbstractContainerTestBase { | ||
|
Oops, something went wrong.