Interface DeleteAttributeLiveCommandAnswerBuilder.ResponseFactory
-
- All Superinterfaces:
LiveCommandResponseFactory
- Enclosing interface:
- DeleteAttributeLiveCommandAnswerBuilder
public static interface DeleteAttributeLiveCommandAnswerBuilder.ResponseFactory extends LiveCommandResponseFactory
Factory forCommandResponses toDeleteAttributecommand.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.ditto.signals.commands.things.ThingErrorResponseattributeNotAccessibleError()Builds aThingErrorResponseindicating that the attribute was not accessible.org.eclipse.ditto.signals.commands.things.ThingErrorResponseattributeNotModifiableError()Builds aThingErrorResponseindicating that the attribute was not modifiable.org.eclipse.ditto.signals.commands.things.modify.DeleteAttributeResponsedeleted()Builds aDeleteAttributeResponseusing the values of theCommand.-
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.DeleteAttributeResponse deleted()
Builds aDeleteAttributeResponseusing the values of theCommand.- Returns:
- the response.
-
attributeNotAccessibleError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse attributeNotAccessibleError()
Builds aThingErrorResponseindicating that the attribute was not accessible.- Returns:
- the response.
- See Also:
AttributeNotAccessibleException
-
attributeNotModifiableError
@Nonnull org.eclipse.ditto.signals.commands.things.ThingErrorResponse attributeNotModifiableError()
Builds aThingErrorResponseindicating that the attribute was not modifiable.- Returns:
- the response.
- See Also:
AttributeNotModifiableException
-
-