hmci/src/main/java/biz/nellemann/hmci/pcm/ServerUtil.java

14 lines
394 B
Java
Raw Normal View History

package biz.nellemann.hmci.pcm;
2021-01-13 07:31:07 +00:00
import java.util.ArrayList;
import java.util.List;
public class ServerUtil {
2021-01-13 07:31:07 +00:00
public ServerProcessor processor = new ServerProcessor();
public ServerMemory memory = new ServerMemory();
public PhysicalProcessorPool physicalProcessorPool = new PhysicalProcessorPool();
public List<SharedProcessorPool> sharedProcessorPool = new ArrayList<>();
}