Compare commits

..

No commits in common. "develop" and "master" have entirely different histories.

1 changed files with 0 additions and 7 deletions

View File

@ -2,10 +2,8 @@ package com.bocloud.rpc.interfaces.ims;
import com.bocloud.acd.rpc.anno.RPCService;
import com.bocloud.common.enums.BoCloudService;
import com.bocloud.ims.entity.resource.Server;
import java.util.List;
import java.util.Set;
@RPCService(BoCloudService.IMS)
public interface ImsRpcService {
@ -14,9 +12,4 @@ public interface ImsRpcService {
* BocloudResultBocloudResult
*/
void preemptOrFreeIp(List<String> ipsToPreempt, List<String> ipsToFree) ;
List<Server> getServerByName (List<String> serverNameList, Long vendorId);
List<Server> getServerAll (Set<Long> vendorIds) throws Exception;
}