Interface SetApplicationVersionChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetApplicationVersionChangeImpl

public interface SetApplicationVersionChange extends Change

Change triggered automatically due to a user-initiated change.


Example to create an instance using the builder pattern

     SetApplicationVersionChange setApplicationVersionChange = SetApplicationVersionChange.builder()
             .change("{change}")
             .previousValue(1)
             .nextValue(1)
             .build()