diff --git a/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/CommandBody.java b/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/CommandBody.java index 414731cf0782934a37c14a0c92a723900307af20..eff4c6d7cdb8e907412b0f9a98ac9c793cfdbc59 100644 --- a/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/CommandBody.java +++ b/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/CommandBody.java @@ -57,7 +57,7 @@ import de.ozgcloud.alfa.wiedervorlage.Wiedervorlage; @Type(value = AktenzeichenCommandBody.class, name = "SET_AKTENZEICHEN"), @Type(value = BescheidDocumentFromFileBody.class, name = "CREATE_BESCHEID_DOCUMENT_FROM_FILE"), @Type(value = CollaborationCommandBody.class, name = "CREATE_COLLABORATION_REQUEST"), - @Type(value = GenericCommandBody.class, name="ARCHIVE_VORGANG") + @Type(value = EmptyCommandBody.class, name="ARCHIVE_VORGANG") }) public interface CommandBody { } diff --git a/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/EmptyCommandBody.java b/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/EmptyCommandBody.java new file mode 100644 index 0000000000000000000000000000000000000000..3095c1084dc8e64355c1622e0db528fdac472657 --- /dev/null +++ b/alfa-service/src/main/java/de/ozgcloud/alfa/common/command/EmptyCommandBody.java @@ -0,0 +1,4 @@ +package de.ozgcloud.alfa.common.command; + +class EmptyCommandBody implements CommandBody { +}