Package com.qfs.desc
Interface IReferenceDescription
-
- All Known Implementing Classes:
ReferenceDescription
public interface IReferenceDescriptionDescription of a reference that an owner store makes to a target store.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends IPair<String,String>>getFieldsMapping()Keys: fields in owner store.StringgetName()Returns the name of the description.StringgetOwnerStore()Returns the name of the owner store.StringgetTargetStore()Returns the name of the target store.booleanisIndexed()Returns whether the owning fields should be indexed.
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the description.
-
getOwnerStore
String getOwnerStore()
Returns the name of the owner store.
-
getTargetStore
String getTargetStore()
Returns the name of the target store.
-
getFieldsMapping
List<? extends IPair<String,String>> getFieldsMapping()
Keys: fields in owner store. Values: fields in target store.- Returns:
- the mapping between fields
-
isIndexed
boolean isIndexed()
Returns whether the owning fields should be indexed.
-
-