Skip to content

Commit

Permalink
Set version to 4.5.2-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Dec 13, 2023
1 parent 709cb5c commit 3b3bfcb
Show file tree
Hide file tree
Showing 30 changed files with 69 additions and 69 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
</parent>

<artifactId>vertx-auth-parent</artifactId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>

<name>Vert.x Auth</name>

<properties>
<stack.version>4.5.1</stack.version>
<stack.version>4.5.2-SNAPSHOT</stack.version>
<doc.skip>true</doc.skip>
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class JWTOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JWTOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JWTOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "algorithm":
Expand Down Expand Up @@ -102,11 +102,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(JWTOptions obj, JsonObject json) {
static void toJson(JWTOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(JWTOptions obj, java.util.Map<String, Object> json) {
static void toJson(JWTOptions obj, java.util.Map<String, Object> json) {
if (obj.getAlgorithm() != null) {
json.put("algorithm", obj.getAlgorithm());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class KeyStoreOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, KeyStoreOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, KeyStoreOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "password":
Expand Down Expand Up @@ -59,11 +59,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(KeyStoreOptions obj, JsonObject json) {
static void toJson(KeyStoreOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(KeyStoreOptions obj, java.util.Map<String, Object> json) {
static void toJson(KeyStoreOptions obj, java.util.Map<String, Object> json) {
if (obj.getPassword() != null) {
json.put("password", obj.getPassword());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class PubSecKeyOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, PubSecKeyOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, PubSecKeyOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "algorithm":
Expand Down Expand Up @@ -59,11 +59,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(PubSecKeyOptions obj, JsonObject json) {
static void toJson(PubSecKeyOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(PubSecKeyOptions obj, java.util.Map<String, Object> json) {
static void toJson(PubSecKeyOptions obj, java.util.Map<String, Object> json) {
if (obj.getAlgorithm() != null) {
json.put("algorithm", obj.getAlgorithm());
}
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-htdigest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-htpasswd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class HtpasswdAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HtpasswdAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HtpasswdAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "htpasswdFile":
Expand All @@ -34,11 +34,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(HtpasswdAuthOptions obj, JsonObject json) {
static void toJson(HtpasswdAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(HtpasswdAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(HtpasswdAuthOptions obj, java.util.Map<String, Object> json) {
if (obj.getHtpasswdFile() != null) {
json.put("htpasswdFile", obj.getHtpasswdFile());
}
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class JWTAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JWTAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JWTAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "jwks":
Expand Down Expand Up @@ -59,11 +59,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(JWTAuthOptions obj, JsonObject json) {
static void toJson(JWTAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(JWTAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(JWTAuthOptions obj, java.util.Map<String, Object> json) {
if (obj.getJwks() != null) {
JsonArray array = new JsonArray();
obj.getJwks().forEach(item -> array.add(item));
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-ldap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class LdapAuthenticationOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, LdapAuthenticationOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, LdapAuthenticationOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authenticationMechanism":
Expand All @@ -44,11 +44,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(LdapAuthenticationOptions obj, JsonObject json) {
static void toJson(LdapAuthenticationOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(LdapAuthenticationOptions obj, java.util.Map<String, Object> json) {
static void toJson(LdapAuthenticationOptions obj, java.util.Map<String, Object> json) {
if (obj.getAuthenticationMechanism() != null) {
json.put("authenticationMechanism", obj.getAuthenticationMechanism());
}
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class OAuth2AuthorizationURLConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, OAuth2AuthorizationURL obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, OAuth2AuthorizationURL obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "additionalParameters":
Expand Down Expand Up @@ -54,11 +54,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(OAuth2AuthorizationURL obj, JsonObject json) {
static void toJson(OAuth2AuthorizationURL obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(OAuth2AuthorizationURL obj, java.util.Map<String, Object> json) {
static void toJson(OAuth2AuthorizationURL obj, java.util.Map<String, Object> json) {
if (obj.getAdditionalParameters() != null) {
JsonObject map = new JsonObject();
obj.getAdditionalParameters().forEach((key, value) -> map.put(key, value));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class OAuth2OptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, OAuth2Options obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, OAuth2Options obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authorizationPath":
Expand Down Expand Up @@ -169,11 +169,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(OAuth2Options obj, JsonObject json) {
static void toJson(OAuth2Options obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(OAuth2Options obj, java.util.Map<String, Object> json) {
static void toJson(OAuth2Options obj, java.util.Map<String, Object> json) {
if (obj.getAuthorizationPath() != null) {
json.put("authorizationPath", obj.getAuthorizationPath());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Oauth2CredentialsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, Oauth2Credentials obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, Oauth2Credentials obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "assertion":
Expand Down Expand Up @@ -74,11 +74,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(Oauth2Credentials obj, JsonObject json) {
static void toJson(Oauth2Credentials obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(Oauth2Credentials obj, java.util.Map<String, Object> json) {
static void toJson(Oauth2Credentials obj, java.util.Map<String, Object> json) {
if (obj.getAssertion() != null) {
json.put("assertion", obj.getAssertion());
}
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-otp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class AuthenticatorConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, Authenticator obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, Authenticator obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "algorithm":
Expand Down Expand Up @@ -54,11 +54,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(Authenticator obj, JsonObject json) {
static void toJson(Authenticator obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(Authenticator obj, java.util.Map<String, Object> json) {
static void toJson(Authenticator obj, java.util.Map<String, Object> json) {
if (obj.getAlgorithm() != null) {
json.put("algorithm", obj.getAlgorithm());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class HotpAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HotpAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, HotpAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authAttemptsLimit":
Expand All @@ -44,11 +44,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(HotpAuthOptions obj, JsonObject json) {
static void toJson(HotpAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(HotpAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(HotpAuthOptions obj, java.util.Map<String, Object> json) {
json.put("authAttemptsLimit", obj.getAuthAttemptsLimit());
json.put("counter", obj.getCounter());
json.put("lookAheadWindow", obj.getLookAheadWindow());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class TotpAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, TotpAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, TotpAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authAttemptsLimit":
Expand All @@ -39,11 +39,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(TotpAuthOptions obj, JsonObject json) {
static void toJson(TotpAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(TotpAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(TotpAuthOptions obj, java.util.Map<String, Object> json) {
json.put("authAttemptsLimit", obj.getAuthAttemptsLimit());
json.put("passwordLength", obj.getPasswordLength());
json.put("period", obj.getPeriod());
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-properties/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-sql-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SqlAuthenticationOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, SqlAuthenticationOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, SqlAuthenticationOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authenticationQuery":
Expand All @@ -29,11 +29,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(SqlAuthenticationOptions obj, JsonObject json) {
static void toJson(SqlAuthenticationOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(SqlAuthenticationOptions obj, java.util.Map<String, Object> json) {
static void toJson(SqlAuthenticationOptions obj, java.util.Map<String, Object> json) {
if (obj.getAuthenticationQuery() != null) {
json.put("authenticationQuery", obj.getAuthenticationQuery());
}
Expand Down
Loading

0 comments on commit 3b3bfcb

Please sign in to comment.