Skip to content

Commit

Permalink
delete no longer needed class SudoRetrieveModifiedThingTagsResponse
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Fesenmeyer <daniel.fesenmeyer@bosch-si.com>
  • Loading branch information
danielFesenmeyer committed Nov 28, 2017
1 parent 99618de commit 460da35
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 333 deletions.
Expand Up @@ -45,8 +45,6 @@ public static SudoCommandResponseRegistry newInstance() {
parseStrategies.put(TakeSnapshotResponse.TYPE, TakeSnapshotResponse::fromJson);
parseStrategies.put(SudoRetrieveThingResponse.TYPE, SudoRetrieveThingResponse::fromJson);
parseStrategies.put(SudoRetrieveThingsResponse.TYPE, SudoRetrieveThingsResponse::fromJson);
parseStrategies.put(SudoRetrieveModifiedThingTagsResponse.TYPE,
SudoRetrieveModifiedThingTagsResponse::fromJson);

return new SudoCommandResponseRegistry(parseStrategies);
}
Expand Down

This file was deleted.

Expand Up @@ -31,7 +31,6 @@
import org.eclipse.ditto.model.things.Thing;
import org.eclipse.ditto.model.things.ThingLifecycle;
import org.eclipse.ditto.model.things.ThingsModelFactory;
import org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveModifiedThingTagsResponse;
import org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThing;
import org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThingResponse;
import org.eclipse.ditto.services.models.things.commands.sudo.SudoRetrieveThings;
Expand Down Expand Up @@ -117,14 +116,6 @@ private static void produceSudoCommands(final Path rootPath) throws IOException
SudoStreamModifiedEntities.of(start, end, rate, TestConstants.EMPTY_HEADERS);
writeJson(sudoCommandsDir.resolve(Paths.get("sudoStreamModifiedEntities.json")),
sudoRetrieveModifiedThingTags);

final SudoRetrieveModifiedThingTagsResponse sudoRetrieveModifiedThingTagsResponse =
SudoRetrieveModifiedThingTagsResponse.of(Arrays
.asList(ThingTag.of("org.eclipse.ditto:the_thingId_1", 3),
ThingTag.of("org.eclipse.ditto:the_thingId_2", 6),
ThingTag.of("org.eclipse.ditto:the_thingId_4", 1)), TestConstants.EMPTY_HEADERS);
writeJson(sudoCommandsDir.resolve(Paths.get("sudoRetrieveModifiedThingTagsResponse.json")),
sudoRetrieveModifiedThingTagsResponse);
}

private static Thing createExampleThing(final String thingId) {
Expand Down

This file was deleted.

0 comments on commit 460da35

Please sign in to comment.