com.qiniu.qvs.model.ChannelInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.qvs.model;
public class ChannelInfo {
private String[] channels;
private int start;
private int end;
public ChannelInfo(String[] channels, int start, int end) {
this.channels = channels;
this.start = start;
this.end = end;
}
public void setChannels(String[] channels) {
this.channels = channels;
}
public void setStart(int start) {
this.start = start;
}
public void setEnd(int end) {
this.end = end;
}
public String[] getChannels() {
return channels;
}
public int getStart() {
return start;
}
public int getEnd() {
return end;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy