public ICFSecuritySecAppObj readSecAppByUJEEMountIdx( long ClusterId, String JEEMountName, boolean forceRead) { if (indexByUJEEMountIdx == null) { indexByUJEEMountIdx = new HashMap<CFSecuritySecAppByUJEEMountIdxKey, ICFSecuritySecAppObj>(); } CFSecuritySecAppByUJEEMountIdxKey key = ((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newUJEEMountIdxKey(); key.setRequiredClusterId(ClusterId); key.setRequiredJEEMountName(JEEMountName); ICFSecuritySecAppObj obj = null; if ((!forceRead) && indexByUJEEMountIdx.containsKey(key)) { obj = indexByUJEEMountIdx.get(key); } else { CFSecuritySecAppBuff buff = ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .readDerivedByUJEEMountIdx(schema.getAuthorization(), ClusterId, JEEMountName); if (buff != null) { obj = schema.getSecAppTableObj().newInstance(); obj.setPKey(((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newPKey()); obj.setBuff(buff); obj = (ICFSecuritySecAppObj) obj.realize(); } else if (schema.getCacheMisses()) { indexByUJEEMountIdx.put(key, null); } } return (obj); }
public ICFSecuritySecAppObj updateSecApp(ICFSecuritySecAppObj Obj) { ICFSecuritySecAppObj obj = Obj; ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .updateSecApp(schema.getAuthorization(), Obj.getSecAppBuff()); obj = (ICFSecuritySecAppObj) Obj.realize(); return (obj); }
public ICFSecuritySecAppObj createSecApp(ICFSecuritySecAppObj Obj) { ICFSecuritySecAppObj obj = Obj; CFSecuritySecAppBuff buff = obj.getSecAppBuff(); ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .createSecApp(schema.getAuthorization(), buff); obj.copyBuffToPKey(); obj = obj.realize(); return (obj); }
public ICFSecuritySecAppObj lockSecApp(CFSecuritySecAppPKey pkey) { ICFSecuritySecAppObj locked = null; CFSecuritySecAppBuff lockBuff = ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .lockDerived(schema.getAuthorization(), pkey); if (lockBuff != null) { locked = schema.getSecAppTableObj().newInstance(); locked.setPKey(((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newPKey()); locked.setBuff(lockBuff); locked = (ICFSecuritySecAppObj) locked.realize(); } else { throw CFLib.getDefaultExceptionFactory() .newCollisionDetectedException(getClass(), "lockSecApp", pkey); } return (locked); }
public ICFSecuritySecAppObj readSecApp(CFSecuritySecAppPKey pkey, boolean forceRead) { ICFSecuritySecAppObj obj = null; if ((!forceRead) && members.containsKey(pkey)) { obj = members.get(pkey); } else { CFSecuritySecAppBuff readBuff = ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .readDerivedByIdIdx( schema.getAuthorization(), pkey.getRequiredClusterId(), pkey.getRequiredSecAppId()); if (readBuff != null) { obj = schema.getSecAppTableObj().newInstance(); obj.setPKey(((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newPKey()); obj.setBuff(readBuff); obj = (ICFSecuritySecAppObj) obj.realize(); } else if (schema.getCacheMisses()) { members.put(pkey, null); } } return (obj); }
public List<ICFSecuritySecAppObj> readSecAppByClusterIdx(long ClusterId, boolean forceRead) { final String S_ProcName = "readSecAppByClusterIdx"; CFSecuritySecAppByClusterIdxKey key = ((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newClusterIdxKey(); key.setRequiredClusterId(ClusterId); Map<CFSecuritySecAppPKey, ICFSecuritySecAppObj> dict; if (indexByClusterIdx == null) { indexByClusterIdx = new HashMap< CFSecuritySecAppByClusterIdxKey, Map<CFSecuritySecAppPKey, ICFSecuritySecAppObj>>(); } if ((!forceRead) && indexByClusterIdx.containsKey(key)) { dict = indexByClusterIdx.get(key); } else { dict = new HashMap<CFSecuritySecAppPKey, ICFSecuritySecAppObj>(); // Allow other threads to dirty-read while we're loading indexByClusterIdx.put(key, dict); ICFSecuritySecAppObj obj; CFSecuritySecAppBuff[] buffList = ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .readDerivedByClusterIdx(schema.getAuthorization(), ClusterId); CFSecuritySecAppBuff buff; for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; obj = schema.getSecAppTableObj().newInstance(); obj.setPKey(((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newPKey()); obj.setBuff(buff); ICFSecuritySecAppObj realized = (ICFSecuritySecAppObj) obj.realize(); } } Comparator<ICFSecuritySecAppObj> cmp = new Comparator<ICFSecuritySecAppObj>() { public int compare(ICFSecuritySecAppObj lhs, ICFSecuritySecAppObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { CFSecuritySecAppPKey lhsPKey = lhs.getPKey(); CFSecuritySecAppPKey rhsPKey = rhs.getPKey(); int ret = lhsPKey.compareTo(rhsPKey); return (ret); } } }; int len = dict.size(); ICFSecuritySecAppObj arr[] = new ICFSecuritySecAppObj[len]; Iterator<ICFSecuritySecAppObj> valIter = dict.values().iterator(); int idx = 0; while ((idx < len) && valIter.hasNext()) { arr[idx++] = valIter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory() .newArgumentUnderflowException(getClass(), S_ProcName, 0, "idx", idx, len); } else if (valIter.hasNext()) { throw CFLib.getDefaultExceptionFactory() .newArgumentOverflowException(getClass(), S_ProcName, 0, "idx", idx, len); } Arrays.sort(arr, cmp); ArrayList<ICFSecuritySecAppObj> arrayList = new ArrayList<ICFSecuritySecAppObj>(len); for (idx = 0; idx < len; idx++) { arrayList.add(arr[idx]); } List<ICFSecuritySecAppObj> sortedList = arrayList; return (sortedList); }
public List<ICFSecuritySecAppObj> readAllSecApp(boolean forceRead) { final String S_ProcName = "readAllSecApp"; if ((allSecApp == null) || forceRead) { Map<CFSecuritySecAppPKey, ICFSecuritySecAppObj> map = new HashMap<CFSecuritySecAppPKey, ICFSecuritySecAppObj>(); allSecApp = map; CFSecuritySecAppBuff[] buffList = ((ICFCrmSchema) schema.getBackingStore()) .getTableSecApp() .readAllDerived(schema.getAuthorization()); CFSecuritySecAppBuff buff; ICFSecuritySecAppObj obj; for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; obj = newInstance(); obj.setPKey(((ICFCrmSchema) schema.getBackingStore()).getFactorySecApp().newPKey()); obj.setBuff(buff); ICFSecuritySecAppObj realized = (ICFSecuritySecAppObj) obj.realize(); } } Comparator<ICFSecuritySecAppObj> cmp = new Comparator<ICFSecuritySecAppObj>() { public int compare(ICFSecuritySecAppObj lhs, ICFSecuritySecAppObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { CFSecuritySecAppPKey lhsPKey = lhs.getPKey(); CFSecuritySecAppPKey rhsPKey = rhs.getPKey(); int ret = lhsPKey.compareTo(rhsPKey); return (ret); } } }; int len = allSecApp.size(); ICFSecuritySecAppObj arr[] = new ICFSecuritySecAppObj[len]; Iterator<ICFSecuritySecAppObj> valIter = allSecApp.values().iterator(); int idx = 0; while ((idx < len) && valIter.hasNext()) { arr[idx++] = valIter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory() .newArgumentUnderflowException(getClass(), S_ProcName, 0, "idx", idx, len); } else if (valIter.hasNext()) { throw CFLib.getDefaultExceptionFactory() .newArgumentOverflowException(getClass(), S_ProcName, 0, "idx", idx, len); } Arrays.sort(arr, cmp); ArrayList<ICFSecuritySecAppObj> arrayList = new ArrayList<ICFSecuritySecAppObj>(len); for (idx = 0; idx < len; idx++) { arrayList.add(arr[idx]); } List<ICFSecuritySecAppObj> sortedList = arrayList; return (sortedList); }