Esempio n. 1
0
 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
Esempio n. 2
0
 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
Esempio n. 3
0
 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
Esempio n. 4
0
 def getLocator(self):
     d = Locator()
     if self.id is not None:
         d['blockingId'] = self.id
     return d
Esempio n. 5
0
 def getLocator(self):
     d = Locator()
     d["roomMapperId"] = self.getId()
     return d
Esempio n. 6
0
 def getLocator(self):
     d = Locator()
     if self.user:
         d["userId"] = self.user.id
     return d
Esempio n. 7
0
 def getLocator(self):
     d = Locator()
     d['locationId'] = self.name
     return d
Esempio n. 8
0
 def getLocator(self):
     return Locator(groupId=self.id)
Esempio n. 9
0
 def getLocator(self):
     d = Locator()
     d["domainId"] = self.getId()
     return d
Esempio n. 10
0
 def getLocator(self):
     locator = Locator()
     locator['roomLocation'] = self.location_name
     locator['resvID'] = self.id
     return locator
Esempio n. 11
0
 def getLocator(self):
     d = Locator()
     d["locationId"] = self.friendlyName
     return d
Esempio n. 12
0
 def getLocator(self):
     if self.getConference() == None:
         return Locator()
     lconf = self.getConference().getLocator()
     lconf["paymentMethodName"] = self.getName()
     return lconf
Esempio n. 13
0
 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
Esempio n. 14
0
 def getLocator(self):
     l = Locator()
     l["pluginType"] = self.getName()
     return l