mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 23:15:26 +00:00
16 lines
315 B
Java
16 lines
315 B
Java
|
|
import java.io.*;
|
||
|
|
|
||
|
|
public class ValueObject implements Serializable {
|
||
|
|
private String value;
|
||
|
|
private String sideEffect;
|
||
|
|
|
||
|
|
public ValueObject() {
|
||
|
|
this("empty");
|
||
|
|
}
|
||
|
|
|
||
|
|
public ValueObject(String value) {
|
||
|
|
this.value = value;
|
||
|
|
this.sideEffect = java.time.LocalTime.now().toString();
|
||
|
|
}
|
||
|
|
}
|