Search in sources :

Example 1 with FullAndPartURIs

use of org.glassfish.deployment.common.Artifacts.FullAndPartURIs in project Payara by payara.

the class StandaloneAppClientDeployerHelper method clientLevelDownloads.

@Override
protected Set<FullAndPartURIs> clientLevelDownloads() throws IOException {
    if (clientLevelDownloads == null) {
        /*
             * Stand-alone client deployments involve these downloads:
             * 1. the original app client JAR,
             * 2. the facade JAR 
             */
        Set<FullAndPartURIs> downloads = new HashSet<FullAndPartURIs>();
        downloads.add(new Artifacts.FullAndPartURIs(appClientServerURI(dc()), appClientUserURI(dc())));
        downloads.add(new Artifacts.FullAndPartURIs(facadeServerURI(dc()), facadeUserURI(dc())));
        clientLevelDownloads = downloads;
    }
    return clientLevelDownloads;
}
Also used : Artifacts(org.glassfish.deployment.common.Artifacts) FullAndPartURIs(org.glassfish.deployment.common.Artifacts.FullAndPartURIs) FullAndPartURIs(org.glassfish.deployment.common.Artifacts.FullAndPartURIs) HashSet(java.util.HashSet)

Aggregations

HashSet (java.util.HashSet)1 Artifacts (org.glassfish.deployment.common.Artifacts)1 FullAndPartURIs (org.glassfish.deployment.common.Artifacts.FullAndPartURIs)1