8ef4183261f2e05a3942687c44874883d78d6fa1
[controller.git] / atomix-storage / src / test / java / io / atomix / storage / journal / TestEntrySerdes.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package io.atomix.storage.journal;
17
18 import io.atomix.storage.journal.JournalSerdes.EntryInput;
19 import io.atomix.storage.journal.JournalSerdes.EntryOutput;
20 import io.atomix.storage.journal.JournalSerdes.EntrySerdes;
21 import java.io.IOException;
22
23 @Deprecated(forRemoval = true, since="9.0.3")
24 final class TestEntrySerdes implements EntrySerdes<TestEntry> {
25     private static final ByteArraySerdes BA_SERIALIZER = new ByteArraySerdes();
26
27     @Override
28     public TestEntry read(final EntryInput input) throws IOException {
29         return new TestEntry(BA_SERIALIZER.read(input));
30     }
31
32     @Override
33     public void write(final EntryOutput output, final TestEntry entry) throws IOException {
34         BA_SERIALIZER.write(output, entry.bytes());
35     }
36 }