in camel-k-core/api/src/main/java/org/apache/camel/k/SourceDefinition.java [151:183]
public String toString() {
String answer = "";
if (name != null) {
answer += "name='" + name + "', ";
}
if (language != null) {
answer += "language='" + language + "', ";
}
if (loader != null) {
answer += "loader='" + loader + "', ";
}
if (interceptors != null) {
answer += "interceptors='" + interceptors + "', ";
}
if (type != null) {
answer += "type='" + type + "', ";
}
if (propertyNames != null) {
answer += "propertyNames='" + propertyNames + "', ";
}
if (location != null) {
answer += "location='" + location + "', ";
}
if (compressed) {
answer += "compressed='true', ";
}
if (content != null) {
answer += "<...>";
}
return "SourceDefinition{" + answer + '}';
}