Skip to content

Commit

Permalink
adjust since tags in javadoc to Ditto version 3.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Jaeckle <thomas.jaeckle@bosch.io>
  • Loading branch information
thjaeckle committed Dec 19, 2022
1 parent 4444087 commit ff46662
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@
import org.eclipse.ditto.json.JsonValue;

/**
* Abstract implementation for common aspects of
* {@link org.eclipse.ditto.connectivity.model.Connection}.
* Abstract implementation for common aspects of {@link Connection}.
*
* @since 3.2.0
*/
abstract class AbstractConnection implements Connection {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
import javax.annotation.concurrent.Immutable;

/**
* Abstract implementation for common aspects of
* {@link org.eclipse.ditto.connectivity.model.ConnectionBuilder}.
* Abstract implementation for common aspects of {@link ConnectionBuilder}.
*
* @since 3.2.0
*/

@Immutable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public enum ConnectionType implements CharSequence {

/**
* Indicates a connection to Eclipse Hono.
* @since 3.1.0
* @since 3.2.0
*/
HONO("hono");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
import javax.annotation.concurrent.Immutable;

/**
* Represents a uri within the Connectivity service.
* Represents an uri within the Connectivity service.
*
* @since 3.2.0
*/
@Immutable
final class ConnectionUri {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
import javax.annotation.Nullable;

/**
* Possible address aliases used by connections of type 'Hono'
* @since 3.1.0
* Possible address aliases used by connections of type 'Hono'.
*
* @since 3.2.0
*/
public enum HonoAddressAlias {

Expand Down Expand Up @@ -55,7 +56,7 @@ public enum HonoAddressAlias {

private final String value;

private HonoAddressAlias(final String value) {
HonoAddressAlias(final String value) {
this.value = value;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
import org.eclipse.ditto.json.JsonParseException;

/**
* Immutable implementation of {@link org.eclipse.ditto.connectivity.model.AbstractConnection} of type
* {@link org.eclipse.ditto.connectivity.model.ConnectionType} HONO.
* Immutable implementation of {@link AbstractConnection} of {@link ConnectionType} HONO.
*
* @since 3.2.0
*/
@Immutable
final class HonoConnection extends AbstractConnection {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public static UserPasswordCredentials newInstance(final String username, final S
*
* @param jsonObject the jsonObject
* @return credentials.
* @since 3.1.0
* @since 3.2.0
*/
public static UserPasswordCredentials newInstance(final JsonObject jsonObject) {
return UserPasswordCredentials.fromJson(jsonObject);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Command which retrieves a {@link org.eclipse.ditto.connectivity.model.Connection} of type 'hono'
* after resolving its aliases and with its additional properties like header mappings and specific config.
*
* @since 3.1.0
* @since 3.2.0
*/
@Immutable
@JsonParsableCommand(typePrefix = ConnectivityCommand.TYPE_PREFIX, name = RetrieveResolvedHonoConnection.NAME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
import javax.annotation.Nullable;

import org.eclipse.ditto.base.model.signals.commands.Command;
import org.eclipse.ditto.connectivity.api.commands.sudo.ConnectivitySudoCommand;
import org.eclipse.ditto.connectivity.model.Connection;
import org.eclipse.ditto.connectivity.model.signals.commands.ConnectivityCommand;
import org.eclipse.ditto.connectivity.model.signals.commands.exceptions.ConnectionNotAccessibleException;
import org.eclipse.ditto.connectivity.model.signals.events.ConnectivityEvent;
import org.eclipse.ditto.connectivity.service.messaging.persistence.stages.ConnectionState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import akka.actor.ActorSystem;

/**
* This strategy handles the {@link org.eclipse.ditto.connectivity.model.signals.commands.query.RetrieveResolvedHonoConnection} command.
* This strategy handles the {@link RetrieveResolvedHonoConnection} command.
*/
final class RetrieveResolvedHonoConnectionStrategy
extends AbstractConnectivityCommandStrategy<RetrieveResolvedHonoConnection> {
Expand Down

0 comments on commit ff46662

Please sign in to comment.