1710 Rebase - Second Attempt
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / client / aai / AAIValidator.java
1 package org.openecomp.mso.client.aai;
2
3 import java.io.IOException;
4
5 public interface AAIValidator {
6         
7         boolean isPhysicalServerLocked(String hostName, String transactionLoggingUuid) throws IOException;
8         
9         boolean isVNFLocked(String vnfId, String transactionLoggingUuid) throws IOException, Exception;
10         
11
12 }