All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.log.response.ListShardResponse Maven / Gradle / Ivy

package com.aliyun.openservices.log.response;

import java.util.ArrayList;
import java.util.Map;

import com.aliyun.openservices.log.common.Shard;

public class ListShardResponse extends Response {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1451751250790494673L;
	protected ArrayList mShards = null;
	
	public ListShardResponse(Map headers, ArrayList shards) {
		super(headers);
		mShards = new ArrayList();
		for (Shard shard:shards) {
			mShards.add(shard);
		}
	}

	public ArrayList GetShards() {
		return mShards;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy