/**
  * {@inheritDoc}
  *
  * @see AbstractCopyingInstalledLocalDeployer#deployEjb(String, EJB)
  */
 public void deployEjb(String deployableDir, EJB ejb) {
   super.deployEjb(deployableDir, ejb);
 }
 /**
  * {@inheritDoc}
  *
  * @see AbstractCopyingInstalledLocalDeployer#deployWar(String, WAR)
  */
 public void deployWar(String deployableDir, WAR war) {
   super.deployWar(deployableDir, war);
 }
 /**
  * Creation of a local deployer with a given file handler.
  *
  * @param container the container to be used
  * @param fileHandler the file handler to use, can be null to use the default file handler
  *     implementation
  */
 public Jonas5xInstalledLocalDeployer(InstalledLocalContainer container, FileHandler fileHandler) {
   super(container);
   if (fileHandler != null) {
     super.setFileHandler(fileHandler);
   }
 }
 /**
  * {@inheritDoc}
  *
  * @see AbstractCopyingInstalledLocalDeployer#deployRar(String, RAR)
  */
 public void deployRar(String deployableDir, RAR rar) {
   super.deployRar(deployableDir, rar);
 }
 /**
  * {@inheritDoc}
  *
  * @see AbstractCopyingInstalledLocalDeployer#deployEar(String, EAR)
  */
 public void deployEar(String deployableDir, EAR ear) {
   super.deployEar(deployableDir, ear);
 }