public static String getPlatform() {
   if (ServerUtils.isUnix()) {
     if (ServerUtils.is64bit()) {
       return "Linux-x86-64";
     } else {
       return "Linux-x86-32";
     }
   } else if (ServerUtils.isWindows()) {
     return "Win32";
   } else if (ServerUtils.isMac()) {
     return "Mac-x86";
   } else return "Solaris-x86";
 }