Beispiel #1
0
 def UserUpdate(ENDPOINT=vars.UserUpdate().endpoint,
                PHONE=vars.UserUpdate().phone,
                CALLSIGN=vars.UserUpdate().callsign):
     contact = Contact()
     contact.setendpoint(ENDPOINT)
     contact.setphone(PHONE)
     contact.setcallsign(CALLSIGN)
     return contact
Beispiel #2
0
 def emergency_on(CALLSIGN=vars.emergency_on().CALLSIGN,
                  ENDPOINT=vars.emergency_on().ENDPOINT,
                  ICONSETPATH=vars.emergency_on().ICONSETPATH,
                  UID=vars.emergency_on().UID,
                  NAME=vars.emergency_on().NAME):
     contact = Contact()
     contact.setcallsign(CALLSIGN)
     contact.setname(NAME)
     contact.setuid(UID)
     contact.setendpoint(ENDPOINT)
     contact.seticonsetpath(ICONSETPATH)
     return contact
Beispiel #3
0
    def connection(CALLSIGN=vars.connection().CALLSIGN,
                   ENDPOINT=vars.connection().ENDPOINT,
                   ICONSETPATH=vars.connection().ICONSETPATH,
                   UID=vars.connection().UID,
                   NAME=vars.connection().NAME,
                   PHONE=vars.connection().PHONE):

        contact = Contact()
        contact.setcallsign(CALLSIGN)
        contact.setname(NAME)
        contact.setuid(UID)
        contact.setendpoint(ENDPOINT)
        contact.seticonsetpath(ICONSETPATH)
        contact.setphone(PHONE)
        return contact
Beispiel #4
0
 def Route(CALLSIGN=vars.Presence().callsign):
     contact = Contact()
     contact.setcallsign(CALLSIGN)
     return contact
Beispiel #5
0
 def SimpleCoT(CALLSIGN=vars.SimpleCoT().callsign):
     contact = Contact()
     contact.setcallsign(CALLSIGN)
     return contact
Beispiel #6
0
 def drop_point(CALLSIGN=vars.drop_point().CALLSIGN):
     contact = Contact()
     contact.setcallsign(callsign=CALLSIGN)
     return contact
Beispiel #7
0
 def BitsImageryVideo(CALLSIGN=vars.BitsImageryVideo().callsign):
     contact = Contact()
     contact.setcallsign(CALLSIGN)
     return contact
Beispiel #8
0
 def SPISensor(CALLSIGN=vars.SPISensor().callsign):
     contact = Contact()
     contact.setcallsign(CALLSIGN)
     return contact
Beispiel #9
0
 def VideoStream(CALLSIGN=vars.VideoStream().callsign):
     contact = Contact()
     contact.setcallsign(CALLSIGN)
     return contact