Create Message encoder, parser and validator for remote wipe

This commit is contained in:
ameba23
2021-05-06 17:48:10 +02:00
parent ae1ad4be24
commit fe79a18061
5 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package org.briarproject.briar.api.remotewipe;
public interface MessageEncoder {
}

View File

@@ -0,0 +1,4 @@
package org.briarproject.briar.api.remotewipe;
public interface MessageParser {
}

View File

@@ -0,0 +1,4 @@
package org.briarproject.briar.remotewipe;
public class MessageEncoderImpl {
}

View File

@@ -0,0 +1,4 @@
package org.briarproject.briar.remotewipe;
public class MessageParserImpl {
}

View File

@@ -0,0 +1,4 @@
package org.briarproject.briar.remotewipe;
public class RemoteWipeValidator {
}