Skip to content

Commit

Permalink
Adapt to moval of ditto-model-jwt
Browse files Browse the repository at this point in the history
Signed-off-by: Yannic Klem <yannic.klem@bosch.io>
  • Loading branch information
Yannic92 committed Apr 29, 2021
1 parent bc24947 commit 94b04cf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion java/pom.xml
Expand Up @@ -818,7 +818,7 @@
</dependency>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-model-jwt</artifactId>
<artifactId>ditto-jwt-model</artifactId>
<version>${ditto.version}</version>
</dependency>
<dependency>
Expand Down
Expand Up @@ -16,7 +16,7 @@

import javax.annotation.concurrent.Immutable;

import org.eclipse.ditto.model.jwt.JsonWebToken;
import org.eclipse.ditto.jwt.model.JsonWebToken;

/**
* A supplier of OAuth 2 Tokens.
Expand Down
Expand Up @@ -27,12 +27,12 @@
import org.eclipse.ditto.client.internal.DefaultThreadFactory;
import org.eclipse.ditto.client.messaging.AuthenticationProvider;
import org.eclipse.ditto.client.messaging.JsonWebTokenSupplier;
import org.eclipse.ditto.model.jwt.JsonWebToken;
import org.eclipse.ditto.jwt.model.JsonWebToken;

import com.neovisionaries.ws.client.WebSocket;

/**
* Common base implementation for authentication providers based on {@link org.eclipse.ditto.model.jwt.JsonWebToken}.
* Common base implementation for authentication providers based on {@link org.eclipse.ditto.jwt.model.JsonWebToken}.
*
* @since 1.0.0
*/
Expand Down
Expand Up @@ -34,8 +34,8 @@
import org.eclipse.ditto.json.JsonFieldDefinition;
import org.eclipse.ditto.json.JsonObject;
import org.eclipse.ditto.json.JsonRuntimeException;
import org.eclipse.ditto.model.jwt.ImmutableJsonWebToken;
import org.eclipse.ditto.model.jwt.JsonWebToken;
import org.eclipse.ditto.jwt.model.ImmutableJsonWebToken;
import org.eclipse.ditto.jwt.model.JsonWebToken;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down
Expand Up @@ -21,8 +21,8 @@
import java.util.Base64;

import org.eclipse.ditto.client.configuration.AccessTokenAuthenticationConfiguration;
import org.eclipse.ditto.model.jwt.ImmutableJsonWebToken;
import org.eclipse.ditto.model.jwt.JsonWebToken;
import org.eclipse.ditto.jwt.model.ImmutableJsonWebToken;
import org.eclipse.ditto.jwt.model.JsonWebToken;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
Expand Down Expand Up @@ -80,4 +80,4 @@ private static String base64(final String value) {
return new String(Base64.getEncoder().encode(value.getBytes()));
}

}
}

0 comments on commit 94b04cf

Please sign in to comment.