Examples of IVirtualArtifactDeployment


Examples of net.sourceforge.javautil.deployer.artifact.IVirtualArtifactDeployment

   * @return A composite deployment or null if no deployer has currently deployed the artifact
   */
  protected VirtualArtifactDeploymentComposite getCompositeDeployment (IVirtualArtifact artifact) {
    List<IVirtualArtifactDeployment> deployments = new ArrayList<IVirtualArtifactDeployment>();
    for (IVirtualArtifactDeployer<IVirtualArtifact, ? extends IVirtualArtifactDeployment<IVirtualArtifact>> deployer : this.deployers) {
      IVirtualArtifactDeployment deployment = deployer.getDeployment(artifact);
      if (deployment != null) deployments.add(deployment);
    }
    return deployments.size() == 0 ? null : this.getCompositeDeployment(artifact, deployments);
  }
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.