Package io.fabric8.kubernetes.api.model
Interface LifecycleFluent<A extends LifecycleFluent<A>>
-
- All Superinterfaces:
Fluent<A>
- All Known Subinterfaces:
ContainerFluent.LifecycleNested<N>,EphemeralContainerFluent.LifecycleNested<N>,WatchEventFluent.LifecycleObjectNested<N>
- All Known Implementing Classes:
ContainerFluentImpl.LifecycleNestedImpl,EphemeralContainerFluentImpl.LifecycleNestedImpl,LifecycleBuilder,LifecycleFluentImpl,WatchEventFluentImpl.LifecycleObjectNestedImpl
public interface LifecycleFluent<A extends LifecycleFluent<A>> extends Fluent<A>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceLifecycleFluent.PostStartNested<N>static interfaceLifecycleFluent.PreStopNested<N>
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description HandlerbuildPostStart()HandlerbuildPreStop()LifecycleFluent.PostStartNested<A>editOrNewPostStart()LifecycleFluent.PostStartNested<A>editOrNewPostStartLike(Handler item)LifecycleFluent.PreStopNested<A>editOrNewPreStop()LifecycleFluent.PreStopNested<A>editOrNewPreStopLike(Handler item)LifecycleFluent.PostStartNested<A>editPostStart()LifecycleFluent.PreStopNested<A>editPreStop()HandlergetPostStart()Deprecated.HandlergetPreStop()Deprecated.BooleanhasPostStart()BooleanhasPreStop()LifecycleFluent.PostStartNested<A>withNewPostStart()LifecycleFluent.PostStartNested<A>withNewPostStartLike(Handler item)LifecycleFluent.PreStopNested<A>withNewPreStop()LifecycleFluent.PreStopNested<A>withNewPreStopLike(Handler item)AwithPostStart(Handler postStart)AwithPreStop(Handler preStop)
-
-
-
Method Detail
-
getPostStart
@Deprecated Handler getPostStart()
Deprecated.This method has been deprecated, please use method buildPostStart instead.- Returns:
- The buildable object.
-
buildPostStart
Handler buildPostStart()
-
hasPostStart
Boolean hasPostStart()
-
withNewPostStart
LifecycleFluent.PostStartNested<A> withNewPostStart()
-
withNewPostStartLike
LifecycleFluent.PostStartNested<A> withNewPostStartLike(Handler item)
-
editPostStart
LifecycleFluent.PostStartNested<A> editPostStart()
-
editOrNewPostStart
LifecycleFluent.PostStartNested<A> editOrNewPostStart()
-
editOrNewPostStartLike
LifecycleFluent.PostStartNested<A> editOrNewPostStartLike(Handler item)
-
getPreStop
@Deprecated Handler getPreStop()
Deprecated.This method has been deprecated, please use method buildPreStop instead.- Returns:
- The buildable object.
-
buildPreStop
Handler buildPreStop()
-
hasPreStop
Boolean hasPreStop()
-
withNewPreStop
LifecycleFluent.PreStopNested<A> withNewPreStop()
-
withNewPreStopLike
LifecycleFluent.PreStopNested<A> withNewPreStopLike(Handler item)
-
editPreStop
LifecycleFluent.PreStopNested<A> editPreStop()
-
editOrNewPreStop
LifecycleFluent.PreStopNested<A> editOrNewPreStop()
-
editOrNewPreStopLike
LifecycleFluent.PreStopNested<A> editOrNewPreStopLike(Handler item)
-
-