Package de.fhg.igd.mongomvcc.impl.internal

Examples of de.fhg.igd.mongomvcc.impl.internal.BuildInfo


    Integer maxBsonObjectSize = (Integer)cr.get("maxBsonObjectSize");
    if (maxBsonObjectSize == null) {
      maxBsonObjectSize = Integer.valueOf(0);
    }
    try {
      return new BuildInfo(Integer.parseInt(vss[0]), Integer.parseInt(vss[1]),
          Integer.parseInt(vss[2]), maxBsonObjectSize);
    } catch (NumberFormatException e) {
      return null;
    }
  }
View Full Code Here

TOP

Related Classes of de.fhg.igd.mongomvcc.impl.internal.BuildInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.