Package org.apache.openjpa.slice

Examples of org.apache.openjpa.slice.PObject


  @Override
  public String distribute(Object pc, List<String> slices, Object context) {
    int N = slices.size();
    for (int i = N; i > 0; i--) {
      PObject p = (PObject)pc;
      if (p.getId()%i == 0) return slices.get(i-1);
    }
    return slices.get(0);
  }
View Full Code Here

TOP

Related Classes of org.apache.openjpa.slice.PObject

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.