-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.py
49 lines (36 loc) · 1.19 KB
/
classes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
class manifest:
def __init__(self):
self.permissionList = []
self.intentFilterList = []
self.servicesList = []
self.isBackupAllowed = ""
self.isDebuggable = ""
self.name= ""
def set_servicesList(self, _list):
self.servicesList = _list
def get_services_list(self, ):
return self.servicesList
def set_permission_list(self, _list):
self.permissionList = _list
def get_permission_list(self):
return self.permissionList
def set_intent_filter_list(self, _list):
self.intentFilterList = _list
def get_intent_filter_list(self):
return self.intentFilterList
def set_is_backup_allowed(self, flag):
self.isBackupAllowed = flag
def get_is_backup_allowed(self):
return self.isBackupAllowed
def set_is_debuggable(self, flag):
self.isDebuggable = flag
def get_is_debuggable(self):
return self.isDebuggable
def set_name(self,name):
self.name=name
def get_name(self):
return self.name
class response200:
def __init__(self,url,last_analysis_stats):
self.url=url
self.last_analysis_stats=last_analysis_stats