1
2
3
4
5
6
7
8
9
10
11
12
| package com.cloud.retrieve.service;
|
| import com.cloud.model.common.Result;
|
| import java.util.List;
|
| public interface ClusterService {
|
| List getClusterDeviceTree();
|
| Result findClusterList(String type, String id, String condition);
| }
|
|