Interface DeleteFeaturesLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- DeleteFeaturesLiveCommandAnswerBuilder
public static interface DeleteFeaturesLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toDeleteFeaturescommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.DeleteFeaturesResponsedeleted()Builds aDeleteFeaturesResponseusing the values of theCommand.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeaturesNotAccessibleError()Builds aThingErrorResponseindicating that the features were not accessible.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeaturesNotModifiableError()Builds aThingErrorResponseindicating that the features were not modifiable.-
Methods inherited from interface org.eclipse.ditto.signals.commands.live.base.LiveCommandResponseFactory
errorResponse, errorResponse, errorResponse
-
-
-
-
Method Detail
-
deleted
@Nonnull org.eclipse.ditto.signals.commands.things.modify.DeleteFeaturesResponse deleted()
Builds aDeleteFeaturesResponseusing the values of theCommand.- Returns:
- the response.
-
featuresNotAccessibleError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featuresNotAccessibleError()
Builds aThingErrorResponseindicating that the features were not accessible.- Returns:
- the response.
- See Also:
FeaturesNotAccessibleException
-
featuresNotModifiableError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featuresNotModifiableError()
Builds aThingErrorResponseindicating that the features were not modifiable.- Returns:
- the response.
- See Also:
FeaturesNotModifiableException
-
-