1 22 package org.jboss.mx.util; 23 24 33 public class Serialization 34 { 35 37 40 public static final int LATEST = 0; 41 42 45 public static final int V1R0 = 10; 46 47 50 public static int version = LATEST; 51 52 55 static 56 { 57 try 58 { 59 String property = PropertyAccess.getProperty("jmx.serial.form"); 60 if (property != null && property.equals("1.0")) 61 version = V1R0; 62 } 63 catch (java.security.AccessControlException ace) 64 { 65 } 67 } 68 } 69 70 | Popular Tags |