com.wix.mediaplatform.v7.service.archive.ArchiveSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-platform-java-sdk Show documentation
Show all versions of media-platform-java-sdk Show documentation
The Wix Media Platform Java SDK
package com.wix.mediaplatform.v7.service.archive;
import com.wix.mediaplatform.v7.service.Source;
public class ArchiveSource extends Source {
private String pathInArchive;
public ArchiveSource() {
super();
}
@Override
public ArchiveSource setFileId(String fileId) {
super.setFileId(fileId);
return this;
}
@Override
public ArchiveSource setPath(String path) {
super.setPath(path);
return this;
}
public ArchiveSource setPathInArchive(String pathInArchive) {
this.pathInArchive = pathInArchive;
return this;
}
public String getPathInArchive() {
return pathInArchive;
}
}