ExcludedTypesPojo Class — spring-boot Architecture
Architecture documentation for the ExcludedTypesPojo class in ExcludedTypesPojo.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/specific/ExcludedTypesPojo.java lines 32–95
@TestConfigurationProperties("excluded")
public class ExcludedTypesPojo {
private String name;
private ClassLoader classLoader;
private DataSource dataSource;
private PrintWriter printWriter;
private Writer writer;
private Writer[] writerArray;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public ClassLoader getClassLoader() {
return this.classLoader;
}
public void setClassLoader(ClassLoader classLoader) {
this.classLoader = classLoader;
}
public DataSource getDataSource() {
return this.dataSource;
}
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
public PrintWriter getPrintWriter() {
return this.printWriter;
}
public void setPrintWriter(PrintWriter printWriter) {
this.printWriter = printWriter;
}
public Writer getWriter() {
return this.writer;
}
public void setWriter(Writer writer) {
this.writer = writer;
}
public Writer[] getWriterArray() {
return this.writerArray;
}
public void setWriterArray(Writer[] writerArray) {
this.writerArray = writerArray;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free