-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputBLE.java
More file actions
31 lines (22 loc) · 1 KB
/
InputBLE.java
File metadata and controls
31 lines (22 loc) · 1 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
package com.github.protocolfuzzing.blefuzzer.symbols;
import com.github.protocolfuzzing.blefuzzer.ExecutionContextBLE;
import com.github.protocolfuzzing.protocolstatefuzzer.components.sul.mapper.abstractsymbols.AbstractInputXml;
import com.github.protocolfuzzing.protocolstatefuzzer.components.sul.mapper.abstractsymbols.OutputChecker;
public class InputBLE extends AbstractInputXml<OutputBLE, Object, ExecutionContextBLE> {
public InputBLE() {
super();
}
public InputBLE(String name) {
super(name);
}
@Override
public void preSendUpdate(ExecutionContextBLE context) {}
@Override
public void postSendUpdate(ExecutionContextBLE context) {}
@Override
public void postReceiveUpdate(OutputBLE output, OutputChecker<OutputBLE> outputChecker, ExecutionContextBLE context) {}
@Override
public Object generateProtocolMessage(ExecutionContextBLE context) {
throw new UnsupportedOperationException("Unimplemented method 'generateProtocolMessage'");
}
}