io.rtdi.bigdata.connector.properties.atomic.INamed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pipelinefoundation Show documentation
Show all versions of pipelinefoundation Show documentation
The abstraction of an Apache Kafka-like Pipeline and common classes/interfaces.
package io.rtdi.bigdata.connector.properties.atomic;
public interface INamed {
String getName();
void setName(String name);
String getDescription();
void setDescription(String description);
String getDisplayname();
void setDisplayname(String displayname);
String getIcon();
void setIcon(String icon);
Boolean getMandatory();
void setMandatory(Boolean mandatory);
Boolean getEnabled();
void setEnabled(Boolean enabled);
String getErrormessage();
void setErrormessage(String errormessage);
String getErroricon();
void setErroricon(String erroricon);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy