()
| 107 | } |
| 108 | |
| 109 | public final List<Integer> GetEnabledExtSecTypes() |
| 110 | { |
| 111 | List<Integer> result = new ArrayList<Integer>(); |
| 112 | |
| 113 | for (Iterator<Integer> i = enabledSecTypes.iterator(); i.hasNext(); ) { |
| 114 | int refType = (Integer)i.next(); |
| 115 | if (refType != secTypeVeNCrypt) /* Do not include VeNCrypt to avoid loops */ |
| 116 | result.add(refType); |
| 117 | } |
| 118 | |
| 119 | return (result); |
| 120 | } |
| 121 | |
| 122 | public final void EnableSecType(int secType) |
| 123 | { |
no test coverage detected