
io.fabric8.kubernetes.api.model.EndpointAddressFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.String;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import javax.validation.Valid;
import java.lang.Object;
import io.fabric8.kubernetes.api.builder.Nested;
public class EndpointAddressFluentImpl> extends BaseFluent implements EndpointAddressFluent{
private String ip;
private VisitableBuilder extends ObjectReference,?> targetRef;
public EndpointAddressFluentImpl(){
}
public EndpointAddressFluentImpl(EndpointAddress instance){
this.withIp(instance.getIp());
this.withTargetRef(instance.getTargetRef());
}
public String getIp(){
return this.ip;
}
public A withIp(String ip){
this.ip=ip; return (A) this;
}
public ObjectReference getTargetRef(){
return this.targetRef!=null?this.targetRef.build():null;
}
public A withTargetRef(ObjectReference targetRef){
if (targetRef!=null){ this.targetRef= new ObjectReferenceBuilder(targetRef); _visitables.add(this.targetRef);} return (A) this;
}
public EndpointAddressFluent.TargetRefNested withNewTargetRef(){
return new TargetRefNestedImpl();
}
public EndpointAddressFluent.TargetRefNested withNewTargetRefLike(ObjectReference item){
return new TargetRefNestedImpl(item);
}
public EndpointAddressFluent.TargetRefNested editTargetRef(){
return withNewTargetRefLike(getTargetRef());
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
EndpointAddressFluentImpl that = (EndpointAddressFluentImpl) o;
if (ip != null ? !ip.equals(that.ip) :that.ip != null) return false;
if (targetRef != null ? !targetRef.equals(that.targetRef) :that.targetRef != null) return false;
return true;
}
public class TargetRefNestedImpl extends ObjectReferenceFluentImpl> implements EndpointAddressFluent.TargetRefNested,Nested{
private final ObjectReferenceBuilder builder;
TargetRefNestedImpl(){
this.builder = new ObjectReferenceBuilder(this);
}
TargetRefNestedImpl(ObjectReference item){
this.builder = new ObjectReferenceBuilder(this, item);
}
public N endTargetRef(){
return and();
}
public N and(){
return (N) EndpointAddressFluentImpl.this.withTargetRef(builder.build());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy