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