congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
LocalContainer.getName
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: codehaus-cargo/cargo

/**
 * {@inheritDoc}
 */
@Override
public void configure(LocalContainer container)
{
  if (getPropertyValue(GeneralPropertySet.JAVA_HOME) == null)
  {
    setProperty(GeneralPropertySet.JAVA_HOME, System.getProperty("java.home"));
  }
  parsePropertiesForPendingConfiguration();
  verify();
  try
  {
    doConfigure(container);
  }
  catch (Exception e)
  {
    throw new ContainerException("Failed to create a " + container.getName() + " "
      + getType().getType() + " configuration", e);
  }
  configureFiles(getFilterChain(), container);
}
origin: codehaus-cargo/cargo

/**
 * {@inheritDoc}
 */
@Override
public void doConfigure(LocalContainer container) throws Exception
{
  try
  {
    setupConfigurationDir();
    FilterChain filterChain = createJettyFilterChain();
    String etcDir = getFileHandler().createDirectory(getHome(), "etc");
    getResourceUtils().copyResource(RESOURCE_PATH + "cargocpc.war",
      new File(getHome(), "cargocpc.war"));
    getResourceUtils().copyResource(RESOURCE_PATH + container.getId() + "/webdefault.xml",
      new File(etcDir, "webdefault.xml"), filterChain, "UTF-8");
    if (container.getOutput() != null)
    {
      activateLogging(container);
    }
  }
  catch (Exception e)
  {
    throw new ContainerException("Failed to create a " + container.getName()
      + " container configuration", e);
  }
}
origin: org.codehaus.cargo/cargo-core-container-jetty

/**
 * {@inheritDoc}
 */
@Override
public void doConfigure(LocalContainer container) throws Exception
{
  try
  {
    setupConfigurationDir();
    FilterChain filterChain = createJettyFilterChain();
    String etcDir = getFileHandler().createDirectory(getHome(), "etc");
    getResourceUtils().copyResource(RESOURCE_PATH + "cargocpc.war",
      new File(getHome(), "cargocpc.war"));
    getResourceUtils().copyResource(RESOURCE_PATH + container.getId() + "/webdefault.xml",
      new File(etcDir, "webdefault.xml"), filterChain, "UTF-8");
    if (container.getOutput() != null)
    {
      activateLogging(container);
    }
  }
  catch (Exception e)
  {
    throw new ContainerException("Failed to create a " + container.getName()
      + " container configuration", e);
  }
}
origin: org.codehaus.cargo/cargo-core-container-tomcat

throw new ContainerException(getContainer().getName() + " doesn't support ["
  + deployable.getType().getType().toUpperCase() + "] archives. Got ["
  + deployable.getFile() + "]");
origin: codehaus-cargo/cargo

throw new ContainerException(getContainer().getName() + " doesn't support ["
  + deployable.getType().getType().toUpperCase() + "] archives. Got ["
  + deployable.getFile() + "]");
origin: codehaus-cargo/cargo

throw new ContainerException("Failed to create a " + container.getName()
  + " container configuration", e);
origin: org.codehaus.cargo/cargo-core-container-tomcat

throw new ContainerException("Failed to create a " + container.getName()
  + " container configuration", e);
origin: codehaus-cargo/cargo

throw new ContainerException("Container " + getContainer().getName()
  + " cannot deploy expanded " + deployable.getType() + " deployables");
origin: codehaus-cargo/cargo

throw new ContainerException("Container " + getContainer().getName()
  + " cannot deploy " + deployable.getType() + " deployables");
origin: org.codehaus.cargo/cargo-core-container-jonas

throw new ContainerException("Container " + getContainer().getName()
  + " cannot deploy " + deployable.getType() + " deployables");
org.codehaus.cargo.containerLocalContainergetName

Popular methods of LocalContainer

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

Popular in Java

  • Finding current android device location
  • compareTo (BigDecimal)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Top plugins for WebStorm
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