Interface ModifyFeaturePropertyLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- ModifyFeaturePropertyLiveCommandAnswerBuilder
public static interface ModifyFeaturePropertyLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toModifyFeaturePropertycommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturePropertyResponsecreated()Builds a "created"ModifyFeaturePropertyResponseusing 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.org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturePropertyResponsemodified()Builds a "modified"ModifyFeaturePropertyResponseusing 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.ModifyFeaturePropertyResponse created()
Builds a "created"ModifyFeaturePropertyResponseusing the values of theCommand.- Returns:
- the response.
-
modified
@Nonnull org.eclipse.ditto.signals.commands.things.modify.ModifyFeaturePropertyResponse modified()
Builds a "modified"ModifyFeaturePropertyResponseusing 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
-
-