com.github.tobato.fastdfs.proto.storage.StorageSetMetadataCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdfs-client Show documentation
Show all versions of fastdfs-client Show documentation
基于yuqih发布的代码与fastdfs-client 官方1.26版本的重构
package com.github.tobato.fastdfs.proto.storage;
import java.util.Set;
import com.github.tobato.fastdfs.domain.MataData;
import com.github.tobato.fastdfs.proto.AbstractFdfsCommand;
import com.github.tobato.fastdfs.proto.FdfsResponse;
import com.github.tobato.fastdfs.proto.storage.enums.StorageMetdataSetType;
import com.github.tobato.fastdfs.proto.storage.internal.StorageSetMetadataRequest;
/**
* 设置文件标签
*
* @author tobato
*
*/
public class StorageSetMetadataCommand extends AbstractFdfsCommand {
/**
* 设置文件标签(元数据)
*
* @param groupName
* @param path
* @param metaDataSet
* @param type
*/
public StorageSetMetadataCommand(String groupName, String path, Set metaDataSet,
StorageMetdataSetType type) {
this.request = new StorageSetMetadataRequest(groupName, path, metaDataSet, type);
// 输出响应
this.response = new FdfsResponse() {
// default response
};
}
}