1 19 package org.openharmonise.rm.resources.audit; 20 21 import org.openharmonise.commons.dsi.*; 22 import org.openharmonise.rm.resources.xml.*; 23 24 25 34 public class XMLAuditResource extends XMLResource { 35 36 39 public XMLAuditResource() { 40 super(); 41 } 42 43 46 public XMLAuditResource(AbstractDataStoreInterface dbintrf) { 47 super(dbintrf); 48 } 49 50 56 public XMLAuditResource(AbstractDataStoreInterface dbintrf, int nId, 57 int nKey, boolean bIsHist) { 58 super(dbintrf, nId, nKey, bIsHist); 59 } 60 61 65 public XMLAuditResource(AbstractDataStoreInterface dbintrf, int nId) { 66 super(dbintrf, nId); 67 } 68 69 72 public String getParentObjectClassName() { 73 return XMLAuditResourceGroup.class.getName(); 74 } 75 76 } 77 | Popular Tags |