com.litongjava.tio.boot.spring.SpringBootArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
package com.litongjava.tio.boot.spring;
public class SpringBootArgs {
private static Class> primarySource = null;
private static String[] args = null;
public static void set(Class> primarySource, String[] args) {
SpringBootArgs.primarySource = primarySource;
SpringBootArgs.args = args;
}
public static Class> getPrimarySource() {
return primarySource;
}
public static String[] getArgs() {
return args;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy