Mark classes as final
[controller.git] / third-party / atomix / storage / src / main / java / io / atomix / storage / journal / DelegatingJournalReader.java
1 /*
2  * Copyright 2017-present Open Networking Foundation
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 static com.google.common.base.MoreObjects.toStringHelper;
19
20 /**
21  * Journal reader delegate.
22  */
23 public class DelegatingJournalReader<E> implements JournalReader<E> {
24   private final JournalReader<E> delegate;
25
26   public DelegatingJournalReader(JournalReader<E> delegate) {
27     this.delegate = delegate;
28   }
29
30   @Override
31   public long getFirstIndex() {
32     return delegate.getFirstIndex();
33   }
34
35   @Override
36   public long getCurrentIndex() {
37     return delegate.getCurrentIndex();
38   }
39
40   @Override
41   public Indexed<E> getCurrentEntry() {
42     return delegate.getCurrentEntry();
43   }
44
45   @Override
46   public long getNextIndex() {
47     return delegate.getNextIndex();
48   }
49
50   @Override
51   public boolean hasNext() {
52     return delegate.hasNext();
53   }
54
55   @Override
56   public Indexed<E> next() {
57     return delegate.next();
58   }
59
60   @Override
61   public void reset() {
62     delegate.reset();
63   }
64
65   @Override
66   public void reset(long index) {
67     delegate.reset(index);
68   }
69
70   @Override
71   public void close() {
72     delegate.close();
73   }
74
75   @Override
76   public String toString() {
77     return toStringHelper(this)
78         .add("delegate", delegate)
79         .toString();
80   }
81 }