Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Apr 9, 2023
2 parents e5f56e5 + 4ffc3ab commit 00bef04
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 10 deletions.
3 changes: 1 addition & 2 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ and fix all documentation.
<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD SuppressionFilter Configuration 1.0//EN" "https://checkstyle.org/dtds/suppressions_1_0.dtd">
<suppressions>
<suppress checks="LineLength" files=".*\.java$" lines="0-23"/>
<suppress checks="JavadocType" files=".*\.java$" lines="23-9999"/>
<suppress checks="JavadocVariable" files=".*\.java$" lines="23-9999"/>
<suppress checks="JavadocMethod" files=".*\.java$" lines="23-9999"/>
<suppress checks="HiddenField" files=".*\.java$" lines="23-9999"/>
<suppress checks="VisibilityModifier" files="KfFlexibleEnvelope.java" lines="44"/>
<suppress checks="VisibilityModifier" files="KfFlexibleEnvelope.java" lines="46"/>
<suppress checks="VisibilityModifier" files="KfAttrEnvelope.java" lines="36-45"/>
</suppressions>
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/Consumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
/**
* Consumer.
*
* @param <K> The key
* @param <X> The value
* @author Ivan Ivanchuck (l3r8y@duck.com)
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/ConsumerSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
/**
* Consumer Settings.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
1 change: 1 addition & 0 deletions src/main/java/io/github/eocqrs/kafka/Data.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
/**
* Message Data.
*
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
1 change: 1 addition & 0 deletions src/main/java/io/github/eocqrs/kafka/Dataized.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
/**
* Dataized.
*
* @param <T> The generic type for key
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/Producer.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
/**
* Producer.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/ProducerSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
/**
* Producer Settings.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/consumer/KfConsumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
/**
* Kafka Consumer.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
1 change: 1 addition & 0 deletions src/main/java/io/github/eocqrs/kafka/data/KfData.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
/**
* Kafka Message Data.
*
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
1 change: 1 addition & 0 deletions src/main/java/io/github/eocqrs/kafka/data/KfDataized.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
/**
* Kafka Dataized data.
*
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
9 changes: 5 additions & 4 deletions src/main/java/io/github/eocqrs/kafka/fake/FkConsumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/*
* @todo #49:45m/DEV Fake Consumer implementation
*/

package io.github.eocqrs.kafka.fake;

Expand All @@ -32,13 +35,11 @@
/**
* Fake Consumer.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/

/**
* @todo #49:45m/DEV Fake Consumer implementation
*/
public final class FkConsumer<K, X> implements Consumer<K, X> {

@Override
Expand Down
9 changes: 5 additions & 4 deletions src/main/java/io/github/eocqrs/kafka/fake/FkProducer.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/*
* @todo #10:45m/DEV Fake Producer implementation
*/

package io.github.eocqrs.kafka.fake;

Expand All @@ -28,13 +31,11 @@
/**
* Fake Producer.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/

/**
* @todo #10:45m/DEV Fake Producer implementation
*/
public final class FkProducer<K, X> implements Producer<K, X> {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
/**
* KfFlexibleSettings allow you to add custom settings.
*
* @param <K> The key
* @param <X> The value
* @author Ivan Ivanchuk (l3r8y@duck.com)
* @since 0.0.2
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
/**
* Envelope for {@link ConsumerSettings}.
*
* @param <K> The key
* @param <X> The value
* @author Ivan Ivanchuk (l3r8y@duck.com)
* @since 0.0.2
*/
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/producer/KfProducer.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
/**
* Kafka Producer.
*
* @param <K> The key
* @param <X> The value
* @author Aliaksei Bialiauski (abialiauski.dev@gmail.com)
* @since 0.0.0
*/
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/io/github/eocqrs/kafka/xml/KfXmlFlexible.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
/**
* Allow creating custom Consumer/Producer from XML.
*
* @param <K> The key
* @param <X> The value
* @author Ivan Ivanchuk (l3r8y@duck.com)
* @since 0.0.2
*/
Expand Down

0 comments on commit 00bef04

Please sign in to comment.