Interface DeleteFeatureLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- DeleteFeatureLiveCommandAnswerBuilder
public static interface DeleteFeatureLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toDeleteFeaturecommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.DeleteFeatureResponsedeleted()Builds aDeleteFeatureResponseusing the values of theCommand.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeatureNotAccessibleError()Builds aThingErrorResponseindicating that the feature was not accessible.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeatureNotModifiableError()Builds aThingErrorResponseindicating that the feature was 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.DeleteFeatureResponse deleted()
Builds aDeleteFeatureResponseusing the values of theCommand.- Returns:
- the response.
-
featureNotAccessibleError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featureNotAccessibleError()
Builds aThingErrorResponseindicating that the feature was not accessible.- Returns:
- the response.
- See Also:
FeatureNotAccessibleException
-
featureNotModifiableError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featureNotModifiableError()
Builds aThingErrorResponseindicating that the feature was not modifiable.- Returns:
- the response.
- See Also:
FeatureNotModifiableException
-
-