Use my OVAL ID to create a base file name. That really just means replacing ':' with '_' *NOTE* This does not include the path to the file.
(self)
| 808 | return 1000 |
| 809 | |
| 810 | def getFileName(self): |
| 811 | """ |
| 812 | Use my OVAL ID to create a base file name. That really just means replacing ':' with '_' |
| 813 | *NOTE* This does not include the path to the file. |
| 814 | """ |
| 815 | ovalid = self.getId() |
| 816 | if not ovalid or ovalid is None: |
| 817 | return None |
| 818 | |
| 819 | return ovalid.replace(":", "_") + ".xml" |
| 820 | |
| 821 | def getPredicate(self): |
| 822 | """ |