def getLocator(self): """Gives back (Locator) a globaly unique identification encapsulated in a Locator object for the RegistrationForm instance """ if self.getConference() == None: return Locator() lconf = self.getConference().getLocator() return lconf
def getLocator(self): """Gives back (Locator) a globally unique identification encapsulated in a Locator object for the booking instance """ if self.getConference() == None: return Locator() lconf = self.getConference().getLocator() lconf["bookingId"] = self.getId() return lconf
def getLocator(self): """ FINAL (not intented to be overriden) Returns a globaly unique identification encapsulated in a Locator object """ owner = self.getOwner() if owner: loc = owner.getLocator() else: from MaKaC.common.Locators import Locator loc = Locator() loc["roomLocation"] = self.locationName loc["roomID"] = self.id return loc
def getLocator(self): d = Locator() if self.id is not None: d['blockingId'] = self.id return d
def getLocator(self): d = Locator() d["roomMapperId"] = self.getId() return d
def getLocator(self): d = Locator() if self.user: d["userId"] = self.user.id return d
def getLocator(self): d = Locator() d['locationId'] = self.name return d
def getLocator(self): return Locator(groupId=self.id)
def getLocator(self): d = Locator() d["domainId"] = self.getId() return d
def getLocator(self): locator = Locator() locator['roomLocation'] = self.location_name locator['resvID'] = self.id return locator
def getLocator(self): d = Locator() d["locationId"] = self.friendlyName return d
def getLocator(self): if self.getConference() == None: return Locator() lconf = self.getConference().getLocator() lconf["paymentMethodName"] = self.getName() return lconf
def getLocator(self): """Gives back (Locator) a globaly unique identification encapsulated in a Locator object for the conference instance """ d = Locator() d["confId"] = self.id return d
def getLocator(self): l = Locator() l["pluginType"] = self.getName() return l