1710 Rebase - Second Attempt
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / client / aai / AAIUpdator.java
1 package org.openecomp.mso.client.aai;
2
3 import java.io.IOException;
4
5 public interface AAIUpdator {
6         
7         void updateVnfToLocked(String vnfName, String uuid) throws IOException, Exception;
8         
9         void updateVnfToUnLocked(String vnfName, String uuid) throws IOException, Exception;
10
11 }