Package org.nuxeo.ecm.directory.sql
Class TableReference
- java.lang.Object
-
- org.nuxeo.ecm.directory.AbstractReference
-
- org.nuxeo.ecm.directory.sql.TableReference
-
- All Implemented Interfaces:
Reference
public class TableReference extends AbstractReference
-
-
Field Summary
Fields Modifier and Type Field Description protected String
dataFileName
protected String
sourceColumn
protected String
tableName
protected String
targetColumn
-
Fields inherited from class org.nuxeo.ecm.directory.AbstractReference
fieldName, sourceDirectory, sourceDirectoryName, targetDirectory, targetDirectoryName
-
-
Constructor Summary
Constructors Constructor Description TableReference(String fieldName, String directory, String tableName, String sourceColumn, String targetColumn, String dataFileName)
TableReference(ReferenceDescriptor descriptor)
TableReference(TableReferenceDescriptor descriptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addLink(String sourceId, String targetId, SQLSession session, boolean checkExisting)
void
addLinks(String sourceId, List<String> targetIds)
void
addLinks(String sourceId, List<String> targetIds, Session session)
Adds the links between the source id and the target idsvoid
addLinks(List<String> sourceIds, String targetId)
void
addLinks(List<String> sourceIds, String targetId, Session session)
Adds the links between the source ids and the target idboolean
exists(String sourceId, String targetId, SQLSession session)
String
getDataFileName()
protected List<String>
getIdsFor(String valueColumn, String filterColumn, String filterValue)
String
getSourceColumn()
List<String>
getSourceIdsForTarget(String targetId)
protected SQLSession
getSQLSession()
String
getTableName()
String
getTargetColumn()
String
getTargetDirectoryName()
List<String>
getTargetIdsForSource(String sourceId)
protected void
initialize(Connection connection)
void
removeLinksFor(String column, String entryId, SQLSession session)
void
removeLinksForSource(String sourceId)
void
removeLinksForSource(String sourceId, Session session)
Removes all the links for a given source idvoid
removeLinksForTarget(String targetId)
void
removeLinksForTarget(String targetId, Session session)
Removes all the links for a given target idvoid
setIdsFor(String idsColumn, List<String> ids, String filterColumn, String filterValue, SQLSession session)
void
setSourceIdsForTarget(String targetId, List<String> sourceIds)
void
setSourceIdsForTarget(String targetId, List<String> sourceIds, Session session)
Sets all source ids to be associated to the given target idvoid
setSourceIdsForTarget(String targetId, List<String> sourceIds, SQLSession session)
void
setTargetIdsForSource(String sourceId, List<String> targetIds)
void
setTargetIdsForSource(String sourceId, List<String> targetIds, Session session)
Sets all target ids to be associated to the given source idvoid
setTargetIdsForSource(String sourceId, List<String> targetIds, SQLSession session)
-
Methods inherited from class org.nuxeo.ecm.directory.AbstractReference
getFieldName, getSourceDirectory, getTargetDirectory, setSourceDirectoryName, setTargetDirectoryName
-
-
-
-
Constructor Detail
-
TableReference
public TableReference(String fieldName, String directory, String tableName, String sourceColumn, String targetColumn, String dataFileName)
- Since:
- 9.2
-
TableReference
public TableReference(TableReferenceDescriptor descriptor)
- Since:
- 9.2
-
TableReference
public TableReference(ReferenceDescriptor descriptor)
- Since:
- 9.2
-
-
Method Detail
-
initialize
protected void initialize(Connection connection)
-
addLinks
public void addLinks(String sourceId, List<String> targetIds, Session session)
Description copied from interface:Reference
Adds the links between the source id and the target ids- Parameters:
sourceId
- the source idtargetIds
- the target idssession
- the session
-
addLinks
public void addLinks(List<String> sourceIds, String targetId, Session session)
Description copied from interface:Reference
Adds the links between the source ids and the target id- Parameters:
sourceIds
- the source idstargetId
- the target idsession
- the session
-
exists
public boolean exists(String sourceId, String targetId, SQLSession session)
-
addLink
public void addLink(String sourceId, String targetId, SQLSession session, boolean checkExisting)
-
getIdsFor
protected List<String> getIdsFor(String valueColumn, String filterColumn, String filterValue)
-
removeLinksFor
public void removeLinksFor(String column, String entryId, SQLSession session)
-
removeLinksForSource
public void removeLinksForSource(String sourceId, Session session)
Description copied from interface:Reference
Removes all the links for a given source id- Parameters:
sourceId
- the source idsession
- the session
-
removeLinksForTarget
public void removeLinksForTarget(String targetId, Session session)
Description copied from interface:Reference
Removes all the links for a given target id- Parameters:
targetId
- the target idsession
- the session
-
removeLinksForSource
public void removeLinksForSource(String sourceId)
-
removeLinksForTarget
public void removeLinksForTarget(String targetId)
-
setIdsFor
public void setIdsFor(String idsColumn, List<String> ids, String filterColumn, String filterValue, SQLSession session)
-
setSourceIdsForTarget
public void setSourceIdsForTarget(String targetId, List<String> sourceIds, SQLSession session)
-
setTargetIdsForSource
public void setTargetIdsForSource(String sourceId, List<String> targetIds, SQLSession session)
-
setSourceIdsForTarget
public void setSourceIdsForTarget(String targetId, List<String> sourceIds, Session session)
Description copied from interface:Reference
Sets all source ids to be associated to the given target id- Parameters:
targetId
- the target idsourceIds
- the source idssession
- the session
-
setTargetIdsForSource
public void setTargetIdsForSource(String sourceId, List<String> targetIds, Session session)
Description copied from interface:Reference
Sets all target ids to be associated to the given source id- Parameters:
sourceId
- the source idtargetIds
- the target idssession
- the session
-
getSQLSession
protected SQLSession getSQLSession()
-
getSourceColumn
public String getSourceColumn()
-
getTargetColumn
public String getTargetColumn()
-
getTargetDirectoryName
public String getTargetDirectoryName()
-
getTableName
public String getTableName()
-
getDataFileName
public String getDataFileName()
-
-