Package com.avoka.fc.core.dao
Class XmlInputMapDao
- java.lang.Object
-
- com.avoka.core.dao.BaseDao
-
- com.avoka.fc.core.dao.AbstractDao
-
- com.avoka.fc.core.dao.XmlInputMapDao
-
public class XmlInputMapDao extends AbstractDao
Provides a DAO for the XmlInputMap entity.- See Also:
XmlInputMap
-
-
Field Summary
-
Fields inherited from class com.avoka.core.dao.BaseDao
FETCH_LIMIT, STATEMENT_MAX_NO_PARAMETERS
-
-
Constructor Summary
Constructors Constructor Description XmlInputMapDao()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XmlInputMap
getXmlInputMapForId(String id)
Return the XML prefill mapping with the specified OIDList<XmlInputMap>
getXmlInputMapListForXmlInputSchema(SchemaSeed schemaSeed)
Return the list of XML prefill mappings defined for a SchemaSeedboolean
hasXmlInputMap(SchemaSeed schemaSeed, String inXpath, String outXpath)
Return whether there is an XML input mapping for the given schema seed, in XPath and out XPath.-
Methods inherited from class com.avoka.fc.core.dao.AbstractDao
andFilterClientExcludeNull, andFilterClientIncludeNull, andFilterClientOnly, isClientAccessAllowed, performQueryConfigCached
-
Methods inherited from class com.avoka.core.dao.BaseDao
addOrdering, addOrderingCaseInsensitive, addOrderingCaseSensitive, andQueryBetween, andQueryInExp, andQueryInExp, andQueryLikeIgnoreCaseExp, andQueryMatchDbExp, andQueryMatchExp, andQueryMatchIsNotNull, andQueryMatchIsNull, andQueryNoMatchExp, andQueryNotTrue, deleteObject, deleteObjects, findObject, getDataContext, getFetchLimit, getLogger, getObjectForPK, newObject, orQueryLikeIgnoreCaseExp, orQueryMatchExp, performNamedQuery, performNamedQuery, performNamedQuery, performNamedQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performQuery, performQuery, performQuery, registerNewObject, setCacheStrategy, setFetchLimit, setLocalCacheStrategy, setLocalCacheStrategy, setSharedCacheStrategy, toMap, toMap
-
-
-
-
Method Detail
-
getXmlInputMapForId
public XmlInputMap getXmlInputMapForId(String id)
Return the XML prefill mapping with the specified OID- Parameters:
id
- the OID- Returns:
- the matching XML prefill mapping, or null if not found
-
getXmlInputMapListForXmlInputSchema
public List<XmlInputMap> getXmlInputMapListForXmlInputSchema(SchemaSeed schemaSeed)
Return the list of XML prefill mappings defined for a SchemaSeed- Parameters:
schemaSeed
- the non-null schema seed- Returns:
- the list of XML prefill mappings associated with the schema seed
-
hasXmlInputMap
public boolean hasXmlInputMap(SchemaSeed schemaSeed, String inXpath, String outXpath)
Return whether there is an XML input mapping for the given schema seed, in XPath and out XPath.- Parameters:
schemaSeed
- the schema seed (required)inXpath
- the XPath in the prefill XML file (required)outXpath
- the XPath in the schema seed (required)- Returns:
- true if a matching XML input mapping exists
- Since:
- 5.1.5.1
-
-