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

import java.io.IOException;

public interface AAIUpdator {
	
	void updateVnfToLocked(String vnfName, String uuid) throws IOException, Exception;
	
	void updateVnfToUnLocked(String vnfName, String uuid) throws IOException, Exception;

}