-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapperBLE.java
More file actions
36 lines (29 loc) · 1.4 KB
/
MapperBLE.java
File metadata and controls
36 lines (29 loc) · 1.4 KB
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
package com.github.protocolfuzzing.blefuzzer;
import com.github.protocolfuzzing.blefuzzer.symbols.InputBLE;
import com.github.protocolfuzzing.blefuzzer.symbols.OutputBLE;
import com.github.protocolfuzzing.blefuzzer.symbols.OutputBuilderBLE;
import com.github.protocolfuzzing.blefuzzer.symbols.OutputCheckerBLE;
import com.github.protocolfuzzing.protocolstatefuzzer.components.sul.mapper.Mapper;
import com.github.protocolfuzzing.protocolstatefuzzer.components.sul.mapper.abstractsymbols.OutputBuilder;
import com.github.protocolfuzzing.protocolstatefuzzer.components.sul.mapper.abstractsymbols.OutputChecker;
import com.github.protocolfuzzing.protocolstatefuzzer.components.sul.mapper.config.MapperConfig;
public class MapperBLE implements Mapper<InputBLE, OutputBLE, ExecutionContextBLE> {
protected OutputBuilder<OutputBLE> outputBuilder = new OutputBuilderBLE();
protected OutputChecker<OutputBLE> outputChecker = new OutputCheckerBLE();
@Override
public OutputBLE execute(InputBLE input, ExecutionContextBLE context) {
throw new UnsupportedOperationException("Unimplemented method 'execute'");
}
@Override
public MapperConfig getMapperConfig() {
return null;
}
@Override
public OutputBuilder<OutputBLE> getOutputBuilder() {
return outputBuilder;
}
@Override
public OutputChecker<OutputBLE> getOutputChecker() {
return outputChecker;
}
}