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;
}
Aggregations