Tabnine Logo
LocalContainer.getLogger
Code IndexAdd Tabnine to your IDE (free)

How to use
getLogger
method
in
org.codehaus.cargo.container.LocalContainer

Best Java code snippets using org.codehaus.cargo.container.LocalContainer.getLogger (Showing top 4 results out of 315)

origin: org.codehaus.cargo/cargo-core-container-jboss

if (altDeployDir != null && !altDeployDir.equals(""))
  container.getLogger().info("Using non-default deployment target directory "
    + altDeployDir, this.getClass().getName());
  deployDir = new File(getHome(), altDeployDir);
origin: codehaus-cargo/cargo

if (altDeployDir != null && !altDeployDir.equals(""))
  container.getLogger().info("Using non-default deployment target directory "
    + altDeployDir, this.getClass().getName());
  deployDir = new File(getHome(), altDeployDir);
origin: org.codehaus.cargo/cargo-core-container-jboss

/**
 * {@inheritDoc}. For JBoss container the target is the <code>deployments</code> directory.
 */
@Override
public String getDeployableDir(Deployable deployable)
{
  String altDeployDir = getContainer().getConfiguration().
  getPropertyValue(JBossPropertySet.ALTERNATIVE_DEPLOYMENT_DIR);
  if (altDeployDir != null && !"".equals(altDeployDir))
  {
    getContainer().getLogger().info("Using non-default deployment target directory "
      + altDeployDir, this.getClass().getName());
    return getFileHandler().append(getContainer().getConfiguration().getHome(),
      altDeployDir);
  }
  else
  {
    return getFileHandler().append(getContainer().
      getConfiguration().getHome(), "deployments");
  }
}
origin: codehaus-cargo/cargo

/**
 * {@inheritDoc}. For JBoss container the target is the <code>deployments</code> directory.
 */
@Override
public String getDeployableDir(Deployable deployable)
{
  String altDeployDir = getContainer().getConfiguration().
  getPropertyValue(JBossPropertySet.ALTERNATIVE_DEPLOYMENT_DIR);
  if (altDeployDir != null && !"".equals(altDeployDir))
  {
    getContainer().getLogger().info("Using non-default deployment target directory "
      + altDeployDir, this.getClass().getName());
    return getFileHandler().append(getContainer().getConfiguration().getHome(),
      altDeployDir);
  }
  else
  {
    return getFileHandler().append(getContainer().
      getConfiguration().getHome(), "deployments");
  }
}
org.codehaus.cargo.containerLocalContainergetLogger

Popular methods of LocalContainer

  • getConfiguration
  • getId
  • getState
  • getName
  • stop
  • restart
  • setTimeout
  • start
  • getCapability
  • getFileHandler
  • isAppend
  • setOutput
  • isAppend,
  • setOutput,
  • getOutput,
  • getTimeout,
  • getType,
  • setAppend,
  • setConfiguration

Popular in Java

  • Reading from database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • setRequestProperty (URLConnection)
  • addToBackStack (FragmentTransaction)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • ImageIO (javax.imageio)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now