Examples of DeploymentSourceImpl


Examples of com.sun.appserv.management.deploy.DeploymentSourceImpl

    archiveFile.deleteOnExit();
   
    final String[]  entriesAdded  = new String[]  { "hello", "there" };
    final String[]  entriesRemoved  = new String[0];
    final String[]  entriesDeleted  = new String[0];
    final DeploymentSourceImpl  ds  =
      new DeploymentSourceImpl( archiveFile.toString(),
        true,
        entriesAdded, entriesRemoved, entriesDeleted, null );
   
    return( ds );
  }
View Full Code Here

Examples of com.sun.appserv.management.deploy.DeploymentSourceImpl

 
    public void
  testDeploymentSourceFromMap()
    throws IOException
  {
    final DeploymentSourceImpl  ds  = createDeploymentSource();
    final Map<String,Serializable>  data  = ds.asMap();
   
    final DeploymentSourceImpl ds2  = new DeploymentSourceImpl( data );
   
    assert( ds2.equals( ds ) );
    assert( ds.equals( ds2 ) );
  }
View Full Code Here

Examples of com.sun.appserv.management.deploy.DeploymentSourceImpl

                    deplMgr.startDeploy(deployActionID, archiveUploadID, planUploadID, dupOptions);
                } else {
                    // using http
                    String archivePath = uploadArchiveOverHTTP(serverId,
                        deployArchive);
                    DeploymentSourceImpl archiveSource =
                        new DeploymentSourceImpl(archivePath, true,
                            new String[1], new String[1], new String[1],
                            new HashMap());

                    String planPath = null;
                    DeploymentSourceImpl planSource = null;

                    // If there is a plan, upload the plan
                    if (deployPlan != null){
                        if (deployPlan.getURI()!=null){
                            File f = new File(deployPlan.getURI().getPath());
                            if (f.length()!= 0) {
                                planPath = uploadArchiveOverHTTP(serverId, deployPlan);
                                planSource =
                                    new DeploymentSourceImpl(planPath, true,
                                    new String[1], new String[1], new String[1],
                                    new HashMap());
                            }
                        }
                    }

                    endTime = System.currentTimeMillis();

                    deplMgr.startDeploy(deployActionID, archiveSource.asMap(),
                        planSource == null ? null : planSource.asMap(),
                        dupOptions);
                }
                _logger.log(Level.FINE,
                    "time in upload: " + (endTime-startTime));
            } else {
                // Directory deploy is supported only on DAS - check that here
                if((isDirectoryDeploy) && (!isDomainLocal(domain))) {
                    setupForAbnormalExit(localStrings.getString("enterprise.deployment.client.domainNotLocal"),
                        domain);
                    return;                   
                }
                DeploymentSourceImpl archive = new DeploymentSourceImpl(deployArchive.getURI().getPath(), true,
                                                    new String[1], new String[1], new String[1], new HashMap());
                // we do not support deployment plan for directory deployment
                // currently
                deplMgr.startDeploy(deployActionID, archive.asMap(), null, dupOptions);
            }

            // if deployActionID is still null, then there is some failure - report this and die
            if(deployActionID == null) {
                setupForAbnormalExit(localStrings.getString("enterprise.deployment.client.no_deployment_id"), domain);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.