Interface DeleteFeaturePropertyLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- DeleteFeaturePropertyLiveCommandAnswerBuilder
public static interface DeleteFeaturePropertyLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toDeleteFeaturePropertycommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.DeleteFeaturePropertyResponsedeleted()Builds aDeleteFeaturePropertyResponseusing the values of theCommand.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeaturePropertyNotAccessibleError()Builds aThingErrorResponseindicating that the feature property was not accessible.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeaturePropertyNotModifiableError()Builds aThingErrorResponseindicating that the feature property 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.DeleteFeaturePropertyResponse deleted()
Builds aDeleteFeaturePropertyResponseusing the values of theCommand.- Returns:
- the response.
-
featurePropertyNotAccessibleError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featurePropertyNotAccessibleError()
Builds aThingErrorResponseindicating that the feature property was not accessible.- Returns:
- the response.
- See Also:
FeaturePropertyNotAccessibleException
-
featurePropertyNotModifiableError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featurePropertyNotModifiableError()
Builds aThingErrorResponseindicating that the feature property was not modifiable.- Returns:
- the response.
- See Also:
FeaturePropertyNotModifiableException
-
-