Interface ModifyFeaturesLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- ModifyFeaturesLiveCommandAnswerBuilder
public static interface ModifyFeaturesLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toModifyFeaturescommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturesResponsecreated()Builds a "created"ModifyFeaturesResponseusing 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.org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturesResponsemodified()Builds a "modified"ModifyFeaturesResponseusing the values of theCommand.-
Methods inherited from interface org.eclipse.ditto.signals.commands.live.base.LiveCommandResponseFactory
errorResponse, errorResponse, errorResponse
-
-
-
-
Method Detail
-
created
@Nonnull org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturesResponse created()
Builds a "created"ModifyFeaturesResponseusing the values of theCommand.- Returns:
- the response.
-
modified
@Nonnull org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturesResponse modified()
Builds a "modified"ModifyFeaturesResponseusing 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
-
-