aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/aai/AAIValidator.java
blob: 5ec2dd679d3343b1946a929d7ae0ccea78d8253a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.openecomp.mso.client.aai;

import java.io.IOException;

public interface AAIValidator {
	
	boolean isPhysicalServerLocked(String hostName, String transactionLoggingUuid) throws IOException;
	
	boolean isVNFLocked(String vnfId, String transactionLoggingUuid) throws IOException, Exception;
	

}