def retrieveAllBy_poiidloc(self, value):
		URL_ALL = "pointofinterest/listpointofinterestsjson/findBy_poiidloc/"+str(value)
		fullDict = self.retrieveFromUrl(URL_ALL)
		return PointOfInterest.readAllFromDict(fullDict)
	def getAllRecordsBy_poiidloc(self, value):
		fullDict = DataReader.getAllRecordsEquals(self, "poiidloc", value)
		return PointOfInterest.readAllFromDict(fullDict)
	def retrieveAll(self, message_writer):
		URL_ALL = "pointofinterest/listpointofinterestsjson"
		fullDict = self.retrieveFromUrl(URL_ALL, message_writer)
		return PointOfInterest.readAllFromDict(fullDict)
	def getAllRecords(self):
		fullDict = DataReader.getAllRecords(self)
		return PointOfInterest.readAllFromDict(fullDict)
 def retrieveAll(self, message_writer):
     URL_ALL = "pointofinterest/listpointofinterestsjson"
     fullDict = self.retrieveFromUrl(URL_ALL, message_writer)
     return PointOfInterest.readAllFromDict(fullDict)
 def getAllRecordsBy_poiidloc(self, value):
     fullDict = DataReader.getAllRecordsEquals(self, "poiidloc", value)
     return PointOfInterest.readAllFromDict(fullDict)
 def getAllRecords(self):
     fullDict = DataReader.getAllRecords(self)
     return PointOfInterest.readAllFromDict(fullDict)
 def retrieveAllBy_poiidloc(self, value):
     URL_ALL = "pointofinterest/listpointofinterestsjson/findBy_poiidloc/" + str(
         value)
     fullDict = self.retrieveFromUrl(URL_ALL)
     return PointOfInterest.readAllFromDict(fullDict)