1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.container.monitor.jvm;6 7 import java.net.URL ;8 9 /**10 * @author Tuan Nguyen (tuan08@users.sourceforge.net)11 * @since Nov 8, 200412 * @version $Id$13 */14 public interface OperatingSystemInfo {15 16 public String getArch() ; 17 public String getName() ; 18 public int getAvailableProcessors() ;19 public String getVersion() ;20 21 public URL createURL(String file) throws Exception ;22 }