-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bindings): move bindings to root package
- Loading branch information
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
asyncapi-core/src/main/java/com/asyncapi/bindings/ChannelBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.asyncapi.bindings; | ||
|
||
import com.asyncapi.v3.ExtendableObject; | ||
import lombok.EqualsAndHashCode; | ||
|
||
/** | ||
* Describes protocol-specific definition for a channel. | ||
* <p> | ||
* This object MAY be extended with {@link ExtendableObject}. | ||
* | ||
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v3.0.0#specificationExtensions">Specification Extensions</a> | ||
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v3.0.0#channelBindingsObject">Channel Binding</a> | ||
* @author Pavel Bodiachevskii | ||
* @version 3.0.0 | ||
*/ | ||
@EqualsAndHashCode(callSuper = true) | ||
public class ChannelBinding extends ExtendableObject { | ||
} |
13 changes: 13 additions & 0 deletions
13
asyncapi-core/src/main/java/com/asyncapi/bindings/MessageBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.asyncapi.bindings; | ||
|
||
import com.asyncapi.v3.ExtendableObject; | ||
import lombok.EqualsAndHashCode; | ||
|
||
/** | ||
* Describes AsyncAPI message binding. | ||
* | ||
* @author Pavel Bodiachevskii | ||
*/ | ||
@EqualsAndHashCode(callSuper = true) | ||
public class MessageBinding extends ExtendableObject { | ||
} |
18 changes: 18 additions & 0 deletions
18
asyncapi-core/src/main/java/com/asyncapi/bindings/OperationBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.asyncapi.bindings; | ||
|
||
import com.asyncapi.v3.ExtendableObject; | ||
import lombok.EqualsAndHashCode; | ||
|
||
/** | ||
* Describes protocol-specific definition for an operation. | ||
* <p> | ||
* This object MAY be extended with {@link ExtendableObject}. | ||
* | ||
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v3.0.0#specificationExtensions">Specification Extensions</a> | ||
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v3.0.0#operationBindingsObject">Operation Binding</a> | ||
* @author Pavel Bodiachevskii | ||
* @version 3.0.0 | ||
*/ | ||
@EqualsAndHashCode(callSuper = true) | ||
public class OperationBinding extends ExtendableObject { | ||
} |
18 changes: 18 additions & 0 deletions
18
asyncapi-core/src/main/java/com/asyncapi/bindings/ServerBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.asyncapi.bindings; | ||
|
||
import com.asyncapi.v3.ExtendableObject; | ||
import lombok.EqualsAndHashCode; | ||
|
||
/** | ||
* Describes protocol-specific definition for a server. | ||
* <p> | ||
* This object MAY be extended with {@link ExtendableObject}. | ||
* | ||
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v3.0.0#specificationExtensions">Specification Extensions</a> | ||
* @see <a href="https://www.asyncapi.com/docs/reference/specification/v3.0.0#serverBindingsObject">Server Binding</a> | ||
* @author Pavel Bodiachevskii | ||
* @version 3.0.0 | ||
*/ | ||
@EqualsAndHashCode(callSuper = true) | ||
public class ServerBinding extends ExtendableObject { | ||
} |