Interface DeleteFeatureDefinitionLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- DeleteFeatureDefinitionLiveCommandAnswerBuilder
public static interface DeleteFeatureDefinitionLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toDeleteFeatureDefinitioncommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.DeleteFeatureDefinitionResponsedeleted()Builds aDeleteFeatureDefinitionResponseusing the values of theCommand.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeatureDefinitionNotAccessibleError()Builds aThingErrorResponseindicating that the Feature Definition was not accessible.org.eclipse.ditto.signals.commands.things.ThingErrorResponsefeatureDefinitionNotModifiableError()Builds aThingErrorResponseindicating that the Feature Definition 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.DeleteFeatureDefinitionResponse deleted()
Builds aDeleteFeatureDefinitionResponseusing the values of theCommand.- Returns:
- the response.
-
featureDefinitionNotAccessibleError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featureDefinitionNotAccessibleError()
Builds aThingErrorResponseindicating that the Feature Definition was not accessible.- Returns:
- the response.
- See Also:
FeaturePropertiesNotAccessibleException
-
featureDefinitionNotModifiableError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse featureDefinitionNotModifiableError()
Builds aThingErrorResponseindicating that the Feature Definition was not modifiable.- Returns:
- the response.
- See Also:
FeaturePropertiesNotModifiableException
-
-