Skip to content

Commit

Permalink
api-4.0.1, service-4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jwomeara committed Jul 19, 2024
1 parent f483c46 commit bf75e5d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<relativePath>../../../microservice-parent/pom.xml</relativePath>
</parent>
<artifactId>authorization-api</artifactId>
<version>4.0.1-SNAPSHOT</version>
<version>4.0.1</version>
<url>https://code.nsa.gov/datawave-authorization-service</url>
<scm>
<connection>scm:git:https://github.com/NationalSecurityAgency/datawave-authorization-service.git</connection>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
public class DatawaveUser implements Serializable {
private static final long serialVersionUID = -6676807246749142999L;

public enum UserType {
USER, SERVER
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class DatawaveUserInfo implements Serializable {
private static final long serialVersionUID = 6644439736099548284L;

private final SubjectIssuerDNPair dn;
private final UserType userType;
private final long creationTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
public class SubjectIssuerDNPair implements Serializable {
private static final long serialVersionUID = -7558558154126871405L;

private final String subjectDN;
private final String issuerDN;

Expand Down
8 changes: 4 additions & 4 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<relativePath>../../../microservice-service-parent/pom.xml</relativePath>
</parent>
<artifactId>authorization-service</artifactId>
<version>4.0.2-SNAPSHOT</version>
<version>4.0.2</version>
<description>DATAWAVE Authorization Microservice</description>
<url>https://code.nsa.gov/datawave-authorization-service</url>
<scm>
Expand All @@ -19,10 +19,10 @@
</scm>
<properties>
<start-class>datawave.microservice.authorization.AuthorizationService</start-class>
<version.authorization-api>4.0.0</version.authorization-api>
<version.authorization-api>4.0.1</version.authorization-api>
<version.jaxb>2.3.3</version.jaxb>
<version.microservice.hazelcast-client>4.0.1</version.microservice.hazelcast-client>
<version.microservice.starter>4.0.1</version.microservice.starter>
<version.microservice.hazelcast-client>4.0.2</version.microservice.hazelcast-client>
<version.microservice.starter>4.0.2</version.microservice.starter>
<version.zookeeper>3.8.0</version.zookeeper>
</properties>
<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class AuthorizationRequest implements Serializable {
private static final long serialVersionUID = -6916962468855241150L;

private DatawaveUserDetails datawaveUserDetails;
private AuthorizedClient authorizedClient;
private String redirect_uri;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public class AuthorizedClient implements Serializable {
private static final long serialVersionUID = -270281918896008012L;

private String client_id;
private String client_name;
private String client_secret;
Expand Down

0 comments on commit bf75e5d

Please sign in to comment.