WssEntry adjacentEntry = entries.get(indexBeforeMove + offset);
entries.set(indexBeforeMove + offset, entry);
entries.set(indexBeforeMove, adjacentEntry);
WSSEntryConfig entryConfig = (WSSEntryConfig) config.getEntryList().get(indexBeforeMove).copy();
WSSEntryConfig adjacentEntryConfig = (WSSEntryConfig) config.getEntryList().get(indexBeforeMove + offset)
.copy();
config.getEntryList().set(indexBeforeMove + offset, entryConfig);
config.getEntryList().set(indexBeforeMove, adjacentEntryConfig);