Interface CoordinatesService
-
- All Known Implementing Classes:
DefaultCoordinatesService
public interface CoordinatesService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
addCoordinate(CoordinatePK pk, List<CoordinatePoint> coordinatePoints)
Method declarationvoid
addPointToAllCoordinates(CoordinatePK pk, CoordinatePoint point)
Method declarationvoid
deleteCoordinates(CoordinatePK pk, List<String> coordinates)
Method declarationvoid
deleteCoordinatesByPoints(CoordinatePK pk, List<String> coordinatePoints)
Method declarationCollection<String>
getCoordinateIdsByNodeId(CoordinatePK pk, String nodeId)
Method declarationList<Coordinate>
getCoordinatesByCoordinateIds(List<String> coordinateIds, CoordinatePK pk)
Method declarationCollection<String>
getCoordinatesByFatherIds(List<Integer> fatherIds, CoordinatePK pk)
Used only by the specific job'peas SmallAds This method must not be used by an another Job'peas Instead, you must use getCoordinatesByFatherPaths()Collection<String>
getCoordinatesByFatherPaths(List<String> fatherPaths, CoordinatePK pk)
-
-
-
Method Detail
-
getCoordinatesByFatherIds
Collection<String> getCoordinatesByFatherIds(List<Integer> fatherIds, CoordinatePK pk)
Used only by the specific job'peas SmallAds This method must not be used by an another Job'peas Instead, you must use getCoordinatesByFatherPaths()- Parameters:
fatherIds
-pk
-- Returns:
-
getCoordinatesByFatherPaths
Collection<String> getCoordinatesByFatherPaths(List<String> fatherPaths, CoordinatePK pk)
- Parameters:
fatherPaths
-pk
-- Returns:
-
addCoordinate
int addCoordinate(CoordinatePK pk, List<CoordinatePoint> coordinatePoints)
Method declaration- Parameters:
pk
-coordinatePoints
-- Returns:
-
deleteCoordinates
void deleteCoordinates(CoordinatePK pk, List<String> coordinates)
Method declaration- Parameters:
pk
-coordinates
-
-
deleteCoordinatesByPoints
void deleteCoordinatesByPoints(CoordinatePK pk, List<String> coordinatePoints)
Method declaration- Parameters:
pk
-coordinatePoints
-
-
getCoordinatesByCoordinateIds
List<Coordinate> getCoordinatesByCoordinateIds(List<String> coordinateIds, CoordinatePK pk)
Method declaration- Parameters:
coordinateIds
-pk
-- Returns:
-
addPointToAllCoordinates
void addPointToAllCoordinates(CoordinatePK pk, CoordinatePoint point)
Method declaration- Parameters:
pk
-point
-
-
getCoordinateIdsByNodeId
Collection<String> getCoordinateIdsByNodeId(CoordinatePK pk, String nodeId)
Method declaration- Parameters:
pk
-nodeId
-- Returns:
-
-