[SDC-29] rebase continue work to align source
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / migration / Migration1707Task.java
1 package org.openecomp.sdc.asdctool.impl.migration;
2
3 /**
4  * for 1707 migration only!!!
5  * please don't implement this interface unless you are sure you want to run with 1707 migration classes
6  */
7 public interface Migration1707Task {
8
9     /**
10      * performs a migration operation
11      * @return true if migration completed successfully or false otherwise
12      */
13     boolean migrate();
14
15     /**
16      *
17      * @return a description of what this migration does
18      */
19     String description();
20
21 }