Interface ModelRelationRepository
-
- All Known Implementing Classes:
ModelRelationRepositoryImpl
public interface ModelRelationRepository- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(ModelRelation modelRelation)voiddeleteModelRelationsForParentModel(String parentModelId)List<ModelRelation>findByParentModelIdAndType(String parentModelId, String type)List<ModelInformation>findModelInformationByChildModelId(String modelId)List<ModelInformation>findModelInformationByParentModelId(String parentModelId)voidsave(ModelRelation modelRelation)
-
-
-
Method Detail
-
deleteModelRelationsForParentModel
void deleteModelRelationsForParentModel(String parentModelId)
-
save
void save(ModelRelation modelRelation)
-
delete
void delete(ModelRelation modelRelation)
-
findByParentModelIdAndType
List<ModelRelation> findByParentModelIdAndType(String parentModelId, String type)
-
findModelInformationByParentModelId
List<ModelInformation> findModelInformationByParentModelId(String parentModelId)
-
findModelInformationByChildModelId
List<ModelInformation> findModelInformationByChildModelId(String modelId)
-
-