Skip to content

Commit

Permalink
docs(bindings): JMS docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Pakisan committed May 14, 2024
1 parent 95f826e commit ba7d396
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
import lombok.EqualsAndHashCode;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS channel binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#channel-binding-object">JMS channel binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
import lombok.EqualsAndHashCode;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS message binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#message-binding-object">JMS message binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
import lombok.EqualsAndHashCode;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS operation binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#operation-binding-object">JMS operation binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
import lombok.EqualsAndHashCode;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS server binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#server-binding-object">JMS server binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @since 1.0.0-RC2
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
import org.jetbrains.annotations.Nullable;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS channel binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#channel-binding-object">JMS channel binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@Data
@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Describes JMS channel destination type.
*
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#channel-binding-object">JMS channel binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
public enum JMSChannelDestinationType {

@JsonProperty("queue")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
import org.jetbrains.annotations.Nullable;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS message binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#message-binding-object">JMS message binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@Data
@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
* <p>
* Describes JMS operation binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#operation-binding-object">JMS operation binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@Data
@NoArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
import java.util.List;

/**
* This class MUST NOT contain any properties. Its name is reserved for future use.
* <p>
* Describes JMS server binding.
*
* @version 0.1.0
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#server-binding-object">JMS server binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@Data
@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
import lombok.NoArgsConstructor;
import org.jetbrains.annotations.NotNull;

/**
* Describes JMS server property.
*
* @see <a href="https://github.com/asyncapi/bindings/tree/master/jms#server-binding-object">JMS server binding</a>
* @see <a href="https://www.oracle.com/java/technologies/java-message-service.html">Java Message Service</a>
* @author Pavel Bodiachevskii
* @version 0.0.1
* @since 1.0.0-RC2
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
Expand Down

0 comments on commit ba7d396

Please sign in to comment.