[SDC-31] add mising script got Comformance fix
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / migration / Migration.java
1 package org.openecomp.sdc.asdctool.impl.migration;
2
3 public interface Migration {
4
5     /**
6      * performs a migration operation
7      * @return true if migration completed successfully or false otherwise
8      */
9     boolean migrate();
10
11     /**
12      *
13      * @return a description of what this migration does
14      */
15     String description();
16
17 }