View Javadoc
1   package org.exoplatform.services.deployment.plugins;
2   
3   public class LinkDeploymentDescriptor {
4   
5     private String sourcePath;
6     private String targetPath;
7     public String getSourcePath() {
8       return sourcePath;
9     }
10    public void setSourcePath(String sourcePath) {
11      this.sourcePath = sourcePath;
12    }
13    public String getTargetPath() {
14      return targetPath;
15    }
16    public void setTargetPath(String targetPath) {
17      this.targetPath = targetPath;
18    }
19  
20  
21  }