io.fabric8.knative.eventing.contrib.github.v1alpha1.GitHubSourceSpecFluentImpl Maven / Gradle / Ivy
package io.fabric8.knative.eventing.contrib.github.v1alpha1;
import io.fabric8.knative.internal.pkg.apis.duck.v1.Destination;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventOverrides;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.util.List;
import io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventOverridesBuilder;
import java.lang.Boolean;
import java.lang.Integer;
import io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventOverridesFluentImpl;
import io.fabric8.knative.internal.pkg.apis.duck.v1.DestinationBuilder;
import java.util.Collection;
import java.lang.Object;
import io.fabric8.knative.internal.pkg.apis.duck.v1.DestinationFluentImpl;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class GitHubSourceSpecFluentImpl> extends BaseFluent implements GitHubSourceSpecFluent{
public GitHubSourceSpecFluentImpl() {
}
public GitHubSourceSpecFluentImpl(GitHubSourceSpec instance) {
this.withAccessToken(instance.getAccessToken());
this.withCeOverrides(instance.getCeOverrides());
this.withEventTypes(instance.getEventTypes());
this.withGithubAPIURL(instance.getGithubAPIURL());
this.withOwnerAndRepository(instance.getOwnerAndRepository());
this.withSecretToken(instance.getSecretToken());
this.withSecure(instance.getSecure());
this.withServiceAccountName(instance.getServiceAccountName());
this.withSink(instance.getSink());
}
private SecretValueFromSourceBuilder accessToken;
private CloudEventOverridesBuilder ceOverrides;
private List eventTypes = new ArrayList();
private String githubAPIURL;
private String ownerAndRepository;
private SecretValueFromSourceBuilder secretToken;
private Boolean secure;
private String serviceAccountName;
private DestinationBuilder sink;
/**
* This method has been deprecated, please use method buildAccessToken instead.
* @return The buildable object.
*/
@Deprecated
public SecretValueFromSource getAccessToken() {
return this.accessToken!=null ?this.accessToken.build():null;
}
public SecretValueFromSource buildAccessToken() {
return this.accessToken!=null ?this.accessToken.build():null;
}
public A withAccessToken(SecretValueFromSource accessToken) {
_visitables.get("accessToken").remove(this.accessToken);
if (accessToken!=null){ this.accessToken= new SecretValueFromSourceBuilder(accessToken); _visitables.get("accessToken").add(this.accessToken);} else { this.accessToken = null; _visitables.get("accessToken").remove(this.accessToken); } return (A) this;
}
public Boolean hasAccessToken() {
return this.accessToken != null;
}
public GitHubSourceSpecFluent.AccessTokenNested withNewAccessToken() {
return new GitHubSourceSpecFluentImpl.AccessTokenNestedImpl();
}
public GitHubSourceSpecFluent.AccessTokenNested withNewAccessTokenLike(SecretValueFromSource item) {
return new GitHubSourceSpecFluentImpl.AccessTokenNestedImpl(item);
}
public GitHubSourceSpecFluent.AccessTokenNested editAccessToken() {
return withNewAccessTokenLike(getAccessToken());
}
public GitHubSourceSpecFluent.AccessTokenNested editOrNewAccessToken() {
return withNewAccessTokenLike(getAccessToken() != null ? getAccessToken(): new SecretValueFromSourceBuilder().build());
}
public GitHubSourceSpecFluent.AccessTokenNested editOrNewAccessTokenLike(SecretValueFromSource item) {
return withNewAccessTokenLike(getAccessToken() != null ? getAccessToken(): item);
}
/**
* This method has been deprecated, please use method buildCeOverrides instead.
* @return The buildable object.
*/
@Deprecated
public CloudEventOverrides getCeOverrides() {
return this.ceOverrides!=null ?this.ceOverrides.build():null;
}
public CloudEventOverrides buildCeOverrides() {
return this.ceOverrides!=null ?this.ceOverrides.build():null;
}
public A withCeOverrides(CloudEventOverrides ceOverrides) {
_visitables.get("ceOverrides").remove(this.ceOverrides);
if (ceOverrides!=null){ this.ceOverrides= new CloudEventOverridesBuilder(ceOverrides); _visitables.get("ceOverrides").add(this.ceOverrides);} else { this.ceOverrides = null; _visitables.get("ceOverrides").remove(this.ceOverrides); } return (A) this;
}
public Boolean hasCeOverrides() {
return this.ceOverrides != null;
}
public GitHubSourceSpecFluent.CeOverridesNested withNewCeOverrides() {
return new GitHubSourceSpecFluentImpl.CeOverridesNestedImpl();
}
public GitHubSourceSpecFluent.CeOverridesNested withNewCeOverridesLike(CloudEventOverrides item) {
return new GitHubSourceSpecFluentImpl.CeOverridesNestedImpl(item);
}
public GitHubSourceSpecFluent.CeOverridesNested editCeOverrides() {
return withNewCeOverridesLike(getCeOverrides());
}
public GitHubSourceSpecFluent.CeOverridesNested editOrNewCeOverrides() {
return withNewCeOverridesLike(getCeOverrides() != null ? getCeOverrides(): new CloudEventOverridesBuilder().build());
}
public GitHubSourceSpecFluent.CeOverridesNested editOrNewCeOverridesLike(CloudEventOverrides item) {
return withNewCeOverridesLike(getCeOverrides() != null ? getCeOverrides(): item);
}
public A addToEventTypes(Integer index,String item) {
if (this.eventTypes == null) {this.eventTypes = new ArrayList();}
this.eventTypes.add(index, item);
return (A)this;
}
public A setToEventTypes(Integer index,String item) {
if (this.eventTypes == null) {this.eventTypes = new ArrayList();}
this.eventTypes.set(index, item); return (A)this;
}
public A addToEventTypes(java.lang.String... items) {
if (this.eventTypes == null) {this.eventTypes = new ArrayList();}
for (String item : items) {this.eventTypes.add(item);} return (A)this;
}
public A addAllToEventTypes(Collection items) {
if (this.eventTypes == null) {this.eventTypes = new ArrayList();}
for (String item : items) {this.eventTypes.add(item);} return (A)this;
}
public A removeFromEventTypes(java.lang.String... items) {
for (String item : items) {if (this.eventTypes!= null){ this.eventTypes.remove(item);}} return (A)this;
}
public A removeAllFromEventTypes(Collection items) {
for (String item : items) {if (this.eventTypes!= null){ this.eventTypes.remove(item);}} return (A)this;
}
public List getEventTypes() {
return this.eventTypes;
}
public String getEventType(Integer index) {
return this.eventTypes.get(index);
}
public String getFirstEventType() {
return this.eventTypes.get(0);
}
public String getLastEventType() {
return this.eventTypes.get(eventTypes.size() - 1);
}
public String getMatchingEventType(Predicate predicate) {
for (String item: eventTypes) { if(predicate.test(item)){ return item;} } return null;
}
public Boolean hasMatchingEventType(Predicate predicate) {
for (String item: eventTypes) { if(predicate.test(item)){ return true;} } return false;
}
public A withEventTypes(List eventTypes) {
if (eventTypes != null) {this.eventTypes = new ArrayList(); for (String item : eventTypes){this.addToEventTypes(item);}} else { this.eventTypes = null;} return (A) this;
}
public A withEventTypes(java.lang.String... eventTypes) {
if (this.eventTypes != null) {this.eventTypes.clear();}
if (eventTypes != null) {for (String item :eventTypes){ this.addToEventTypes(item);}} return (A) this;
}
public Boolean hasEventTypes() {
return eventTypes != null && !eventTypes.isEmpty();
}
public String getGithubAPIURL() {
return this.githubAPIURL;
}
public A withGithubAPIURL(String githubAPIURL) {
this.githubAPIURL=githubAPIURL; return (A) this;
}
public Boolean hasGithubAPIURL() {
return this.githubAPIURL != null;
}
public String getOwnerAndRepository() {
return this.ownerAndRepository;
}
public A withOwnerAndRepository(String ownerAndRepository) {
this.ownerAndRepository=ownerAndRepository; return (A) this;
}
public Boolean hasOwnerAndRepository() {
return this.ownerAndRepository != null;
}
/**
* This method has been deprecated, please use method buildSecretToken instead.
* @return The buildable object.
*/
@Deprecated
public SecretValueFromSource getSecretToken() {
return this.secretToken!=null ?this.secretToken.build():null;
}
public SecretValueFromSource buildSecretToken() {
return this.secretToken!=null ?this.secretToken.build():null;
}
public A withSecretToken(SecretValueFromSource secretToken) {
_visitables.get("secretToken").remove(this.secretToken);
if (secretToken!=null){ this.secretToken= new SecretValueFromSourceBuilder(secretToken); _visitables.get("secretToken").add(this.secretToken);} else { this.secretToken = null; _visitables.get("secretToken").remove(this.secretToken); } return (A) this;
}
public Boolean hasSecretToken() {
return this.secretToken != null;
}
public GitHubSourceSpecFluent.SecretTokenNested withNewSecretToken() {
return new GitHubSourceSpecFluentImpl.SecretTokenNestedImpl();
}
public GitHubSourceSpecFluent.SecretTokenNested withNewSecretTokenLike(SecretValueFromSource item) {
return new GitHubSourceSpecFluentImpl.SecretTokenNestedImpl(item);
}
public GitHubSourceSpecFluent.SecretTokenNested editSecretToken() {
return withNewSecretTokenLike(getSecretToken());
}
public GitHubSourceSpecFluent.SecretTokenNested editOrNewSecretToken() {
return withNewSecretTokenLike(getSecretToken() != null ? getSecretToken(): new SecretValueFromSourceBuilder().build());
}
public GitHubSourceSpecFluent.SecretTokenNested editOrNewSecretTokenLike(SecretValueFromSource item) {
return withNewSecretTokenLike(getSecretToken() != null ? getSecretToken(): item);
}
public Boolean getSecure() {
return this.secure;
}
public A withSecure(Boolean secure) {
this.secure=secure; return (A) this;
}
public Boolean hasSecure() {
return this.secure != null;
}
public String getServiceAccountName() {
return this.serviceAccountName;
}
public A withServiceAccountName(String serviceAccountName) {
this.serviceAccountName=serviceAccountName; return (A) this;
}
public Boolean hasServiceAccountName() {
return this.serviceAccountName != null;
}
/**
* This method has been deprecated, please use method buildSink instead.
* @return The buildable object.
*/
@Deprecated
public Destination getSink() {
return this.sink!=null ?this.sink.build():null;
}
public Destination buildSink() {
return this.sink!=null ?this.sink.build():null;
}
public A withSink(Destination sink) {
_visitables.get("sink").remove(this.sink);
if (sink!=null){ this.sink= new DestinationBuilder(sink); _visitables.get("sink").add(this.sink);} else { this.sink = null; _visitables.get("sink").remove(this.sink); } return (A) this;
}
public Boolean hasSink() {
return this.sink != null;
}
public GitHubSourceSpecFluent.SinkNested withNewSink() {
return new GitHubSourceSpecFluentImpl.SinkNestedImpl();
}
public GitHubSourceSpecFluent.SinkNested withNewSinkLike(Destination item) {
return new GitHubSourceSpecFluentImpl.SinkNestedImpl(item);
}
public GitHubSourceSpecFluent.SinkNested editSink() {
return withNewSinkLike(getSink());
}
public GitHubSourceSpecFluent.SinkNested editOrNewSink() {
return withNewSinkLike(getSink() != null ? getSink(): new DestinationBuilder().build());
}
public GitHubSourceSpecFluent.SinkNested editOrNewSinkLike(Destination item) {
return withNewSinkLike(getSink() != null ? getSink(): item);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GitHubSourceSpecFluentImpl that = (GitHubSourceSpecFluentImpl) o;
if (accessToken != null ? !accessToken.equals(that.accessToken) :that.accessToken != null) return false;
if (ceOverrides != null ? !ceOverrides.equals(that.ceOverrides) :that.ceOverrides != null) return false;
if (eventTypes != null ? !eventTypes.equals(that.eventTypes) :that.eventTypes != null) return false;
if (githubAPIURL != null ? !githubAPIURL.equals(that.githubAPIURL) :that.githubAPIURL != null) return false;
if (ownerAndRepository != null ? !ownerAndRepository.equals(that.ownerAndRepository) :that.ownerAndRepository != null) return false;
if (secretToken != null ? !secretToken.equals(that.secretToken) :that.secretToken != null) return false;
if (secure != null ? !secure.equals(that.secure) :that.secure != null) return false;
if (serviceAccountName != null ? !serviceAccountName.equals(that.serviceAccountName) :that.serviceAccountName != null) return false;
if (sink != null ? !sink.equals(that.sink) :that.sink != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(accessToken, ceOverrides, eventTypes, githubAPIURL, ownerAndRepository, secretToken, secure, serviceAccountName, sink, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (accessToken != null) { sb.append("accessToken:"); sb.append(accessToken + ","); }
if (ceOverrides != null) { sb.append("ceOverrides:"); sb.append(ceOverrides + ","); }
if (eventTypes != null && !eventTypes.isEmpty()) { sb.append("eventTypes:"); sb.append(eventTypes + ","); }
if (githubAPIURL != null) { sb.append("githubAPIURL:"); sb.append(githubAPIURL + ","); }
if (ownerAndRepository != null) { sb.append("ownerAndRepository:"); sb.append(ownerAndRepository + ","); }
if (secretToken != null) { sb.append("secretToken:"); sb.append(secretToken + ","); }
if (secure != null) { sb.append("secure:"); sb.append(secure + ","); }
if (serviceAccountName != null) { sb.append("serviceAccountName:"); sb.append(serviceAccountName + ","); }
if (sink != null) { sb.append("sink:"); sb.append(sink); }
sb.append("}");
return sb.toString();
}
public A withSecure() {
return withSecure(true);
}
class AccessTokenNestedImpl extends SecretValueFromSourceFluentImpl> implements GitHubSourceSpecFluent.AccessTokenNested,Nested{
AccessTokenNestedImpl(SecretValueFromSource item) {
this.builder = new SecretValueFromSourceBuilder(this, item);
}
AccessTokenNestedImpl() {
this.builder = new SecretValueFromSourceBuilder(this);
}
SecretValueFromSourceBuilder builder;
public N and() {
return (N) GitHubSourceSpecFluentImpl.this.withAccessToken(builder.build());
}
public N endAccessToken() {
return and();
}
}
class CeOverridesNestedImpl extends CloudEventOverridesFluentImpl> implements GitHubSourceSpecFluent.CeOverridesNested,Nested{
CeOverridesNestedImpl(CloudEventOverrides item) {
this.builder = new CloudEventOverridesBuilder(this, item);
}
CeOverridesNestedImpl() {
this.builder = new CloudEventOverridesBuilder(this);
}
CloudEventOverridesBuilder builder;
public N and() {
return (N) GitHubSourceSpecFluentImpl.this.withCeOverrides(builder.build());
}
public N endCeOverrides() {
return and();
}
}
class SecretTokenNestedImpl extends SecretValueFromSourceFluentImpl> implements GitHubSourceSpecFluent.SecretTokenNested,Nested{
SecretTokenNestedImpl(SecretValueFromSource item) {
this.builder = new SecretValueFromSourceBuilder(this, item);
}
SecretTokenNestedImpl() {
this.builder = new SecretValueFromSourceBuilder(this);
}
SecretValueFromSourceBuilder builder;
public N and() {
return (N) GitHubSourceSpecFluentImpl.this.withSecretToken(builder.build());
}
public N endSecretToken() {
return and();
}
}
class SinkNestedImpl extends DestinationFluentImpl> implements GitHubSourceSpecFluent.SinkNested,Nested{
SinkNestedImpl(Destination item) {
this.builder = new DestinationBuilder(this, item);
}
SinkNestedImpl() {
this.builder = new DestinationBuilder(this);
}
DestinationBuilder builder;
public N and() {
return (N) GitHubSourceSpecFluentImpl.this.withSink(builder.build());
}
public N endSink() {
return and();
}
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy