Interface DeleteFeaturePropertiesLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- DeleteFeaturePropertiesLiveCommandAnswerBuilder
public static interface DeleteFeaturePropertiesLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toDeleteFeaturePropertiescommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.DeleteFeaturePropertiesResponsedeleted()Builds aDeleteFeaturePropertiesResponseusing the values of theCommand.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeaturePropertiesNotAccessibleError()Builds aThingErrorResponseindicating that the feature properties were not accessible.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeaturePropertiesNotModifiableError()Builds aThingErrorResponseindicating that the feature properties 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.DeleteFeaturePropertiesResponse deleted()
Builds aDeleteFeaturePropertiesResponseusing the values of theCommand.- Returns:
- the response.
-
featurePropertiesNotAccessibleError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featurePropertiesNotAccessibleError()
Builds aThingErrorResponseindicating that the feature properties were not accessible.- Returns:
- the response.
- See Also:
FeaturePropertiesNotAccessibleException
-
featurePropertiesNotModifiableError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featurePropertiesNotModifiableError()
Builds aThingErrorResponseindicating that the feature properties were not modifiable.- Returns:
- the response.
- See Also:
FeaturePropertiesNotModifiableException
-
-