bwLehrpool Masterserver
Manages authentication and sharing of virtual machines between participating institutions
OutgoingTransfer.java
Go to the documentation of this file.
1 package org.openslx.imagemaster.serverconnection;
2 
3 import java.io.File;
4 import java.util.UUID;
5 
6 import org.openslx.filetransfer.util.OutgoingTransferBase;
7 
8 public class OutgoingTransfer extends OutgoingTransferBase
9 {
10 
11  public OutgoingTransfer( File sourceFile, int plainPort, int sslPort )
12  {
13  super( UUID.randomUUID().toString(), sourceFile, plainPort, sslPort );
14  }
15 
16  @Override
17  public String getRelativePath()
18  {
19  return null;
20  }
21 
22 }
OutgoingTransfer(File sourceFile, int plainPort, int sslPort)