package common; public class ThreadPoolConstants { public static final int CORE_POOL_SIZE = 5; public static final int MAX_POOL_SIZE = 10; public static final int QUEUE_CAPACITY = 100; public static final Long KEEP_ALIVE_TIME = 1L; private ThreadPoolConstants(){ } }