Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions authorize/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,6 @@
<artifactId>server</artifactId>
</dependency>

<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-meta</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-security</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-validator</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>openapi-parser</artifactId>
Expand Down
17 changes: 0 additions & 17 deletions cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,23 +104,6 @@
<artifactId>server</artifactId>
</dependency>

<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-meta</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-security</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-validator</artifactId>
</dependency>

<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-parser</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
Expand Down
13 changes: 0 additions & 13 deletions cache/src/main/java/com/networknt/oauth/cache/model/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import io.swagger.annotations.ApiModelProperty;

import java.io.IOException;
import java.util.Objects;
Expand Down Expand Up @@ -114,7 +113,6 @@ public Client clientId(String clientId) {
}


@ApiModelProperty(example = "null", value = "a unique client id")
@JsonProperty("clientId")
public String getClientId() {
return clientId;
Expand All @@ -129,7 +127,6 @@ public Client clientSecret(String clientSecret) {
}


@ApiModelProperty(example = "null", value = "client secret")
@JsonProperty("clientSecret")
public String getClientSecret() {
return clientSecret;
Expand All @@ -144,7 +141,6 @@ public Client clientType(ClientTypeEnum clientType) {
}


@ApiModelProperty(example = "null", required = true, value = "client type")
@JsonProperty("clientType")
public ClientTypeEnum getClientType() {
return clientType;
Expand All @@ -159,7 +155,6 @@ public Client clientProfile(ClientProfileEnum clientProfile) {
}


@ApiModelProperty(example = "null", value = "client profile")
@JsonProperty("clientProfile")
public ClientProfileEnum getClientProfile() {
return clientProfile;
Expand All @@ -174,7 +169,6 @@ public Client clientName(String clientName) {
}


@ApiModelProperty(example = "null", required = true, value = "client name")
@JsonProperty("clientName")
public String getClientName() {
return clientName;
Expand All @@ -189,7 +183,6 @@ public Client clientDesc(String clientDesc) {
}


@ApiModelProperty(example = "null", required = true, value = "client description")
@JsonProperty("clientDesc")
public String getClientDesc() {
return clientDesc;
Expand All @@ -204,7 +197,6 @@ public Client ownerId(String ownerId) {
}


@ApiModelProperty(example = "null", required = true, value = "client owner id")
@JsonProperty("ownerId")
public String getOwnerId() {
return ownerId;
Expand All @@ -219,7 +211,6 @@ public Client scope(String scope) {
}


@ApiModelProperty(example = "null", required = true, value = "client scope separated by space")
@JsonProperty("scope")
public String getScope() {
return scope;
Expand All @@ -234,7 +225,6 @@ public Client customClaim(String customClaim) {
}


@ApiModelProperty(example = "null", value = "custom claim")
@JsonProperty("customClaim")
public String getCustomClaim() {
return customClaim;
Expand All @@ -250,7 +240,6 @@ public Client redirectUri(String redirectUri) {
}


@ApiModelProperty(example = "null", value = "redirect uri")
@JsonProperty("redirectUri")
public String getRedirectUri() {
return redirectUri;
Expand All @@ -266,7 +255,6 @@ public Client authenticateClass(String authenticateClass) {
}


@ApiModelProperty(example = "null", value = "authenticate class")
@JsonProperty("authenticateClass")
public String getAuthenticateClass() {
return authenticateClass;
Expand All @@ -282,7 +270,6 @@ public Client derefClientId(String derefClientId) {
}


@ApiModelProperty(example = "null", value = "de-reference token client id")
@JsonProperty("derefClientId")
public String getDerefClientId() {
return derefClientId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import io.swagger.annotations.ApiModelProperty;

import java.io.IOException;
import java.util.Objects;
Expand All @@ -30,7 +29,6 @@ public Provider Provider(String providerId) {
}


@ApiModelProperty(example = "null", required = true, value = "provider id")
@JsonProperty("providerId")
public String getProviderId() {
return providerId;
Expand All @@ -41,7 +39,6 @@ public void setProviderId(String providerId) {



@ApiModelProperty(example = "null", required = true, value = "serverUrl")
@JsonProperty("serverUrl")
public String getServerUrl() {
return serverUrl;
Expand All @@ -51,7 +48,6 @@ public void setServerUrl(String serverUrl) {
}


@ApiModelProperty(example = "null", required = true, value = "uri")
@JsonProperty("uri")
public String getUri() {
return uri;
Expand All @@ -61,7 +57,6 @@ public void setUri(String uri) {
}


@ApiModelProperty(example = "null", value = "provider name")
@JsonProperty("providerName")
public String getProviderName() {
return providerName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import io.swagger.annotations.ApiModelProperty;

import java.io.IOException;
import java.util.Objects;
Expand Down Expand Up @@ -37,7 +36,6 @@ public RefreshToken refreshToken(String refreshToken) {
}


@ApiModelProperty(example = "null", required = true, value = "refresh token")
@JsonProperty("refreshToken")
public String getRefreshToken() {
return refreshToken;
Expand All @@ -52,7 +50,6 @@ public RefreshToken userId(String userId) {
}


@ApiModelProperty(example = "null", required = true, value = "user id")
@JsonProperty("userId")
public String getUserId() {
return userId;
Expand All @@ -68,7 +65,6 @@ public RefreshToken userType(String userType) {
}


@ApiModelProperty(example = "null", required = true, value = "user type")
@JsonProperty("userType")
public String getUserType() {
return userType;
Expand All @@ -85,7 +81,6 @@ public RefreshToken roles(String roles) {
}


@ApiModelProperty(example = "null", value = "user roles")
@JsonProperty("roles")
public String getRoles() {
return roles;
Expand All @@ -101,7 +96,6 @@ public RefreshToken clientId(String clientId) {
}


@ApiModelProperty(example = "null", required = true, value = "client id")
@JsonProperty("clientId")
public String getClientId() {
return clientId;
Expand All @@ -116,7 +110,6 @@ public RefreshToken scope(String scope) {
}


@ApiModelProperty(example = "null", value = "service scopes separated by space")
@JsonProperty("scope")
public String getScope() {
return scope;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import io.swagger.annotations.ApiModelProperty;

import java.io.IOException;
import java.util.Objects;
Expand Down Expand Up @@ -63,7 +62,6 @@ public Service serviceId(String serviceId) {
}


@ApiModelProperty(example = "null", required = true, value = "a unique service id")
@JsonProperty("serviceId")
public String getServiceId() {
return serviceId;
Expand All @@ -78,7 +76,6 @@ public Service serviceType(ServiceTypeEnum serviceType) {
}


@ApiModelProperty(example = "null", required = true, value = "service type")
@JsonProperty("serviceType")
public ServiceTypeEnum getServiceType() {
return serviceType;
Expand All @@ -93,7 +90,6 @@ public Service serviceName(String serviceName) {
}


@ApiModelProperty(example = "null", required = true, value = "service name")
@JsonProperty("serviceName")
public String getServiceName() {
return serviceName;
Expand All @@ -108,7 +104,6 @@ public Service serviceDesc(String serviceDesc) {
}


@ApiModelProperty(example = "null", value = "service description")
@JsonProperty("serviceDesc")
public String getServiceDesc() {
return serviceDesc;
Expand All @@ -123,7 +118,6 @@ public Service ownerId(String ownerId) {
}


@ApiModelProperty(example = "null", value = "service owner userId")
@JsonProperty("ownerId")
public String getOwnerId() {
return ownerId;
Expand All @@ -138,7 +132,6 @@ public Service scope(String scope) {
}


@ApiModelProperty(example = "null", required = true, value = "service scopes separated by space")
@JsonProperty("scope")
public String getScope() {
return scope;
Expand Down
9 changes: 0 additions & 9 deletions cache/src/main/java/com/networknt/oauth/cache/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import io.swagger.annotations.ApiModelProperty;

import java.io.IOException;
import java.util.Objects;
Expand Down Expand Up @@ -71,7 +70,6 @@ public User userId(String userId) {
}


@ApiModelProperty(example = "null", required = true, value = "a unique id")
@JsonProperty("userId")
public String getUserId() {
return userId;
Expand All @@ -86,7 +84,6 @@ public User userType(UserTypeEnum userType) {
}


@ApiModelProperty(example = "null", required = true, value = "user type")
@JsonProperty("userType")
public UserTypeEnum getUserType() {
return userType;
Expand All @@ -101,7 +98,6 @@ public User firstName(String firstName) {
}


@ApiModelProperty(example = "null", required = true, value = "first name")
@JsonProperty("firstName")
public String getFirstName() {
return firstName;
Expand All @@ -116,7 +112,6 @@ public User lastName(String lastName) {
}


@ApiModelProperty(example = "null", required = true, value = "last name")
@JsonProperty("lastName")
public String getLastName() {
return lastName;
Expand All @@ -131,7 +126,6 @@ public User email(String email) {
}


@ApiModelProperty(example = "null", required = true, value = "email address")
@JsonProperty("email")
public String getEmail() {
return email;
Expand All @@ -146,7 +140,6 @@ public User password(String password) {
}


@ApiModelProperty(example = "null", value = "password")
@JsonProperty("password")
public String getPassword() {
return password;
Expand All @@ -161,7 +154,6 @@ public User passwordConfirm(String passwordConfirm) {
}


@ApiModelProperty(example = "null", value = "password confirm")
@JsonProperty("passwordConfirm")
public String getPasswordConfirm() {
return passwordConfirm;
Expand All @@ -177,7 +169,6 @@ public User roles(String roles) {
}


@ApiModelProperty(example = "null", value = "user roles")
@JsonProperty("roles")
public String getRoles() {
return roles;
Expand Down
12 changes: 0 additions & 12 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,6 @@
<artifactId>server</artifactId>
</dependency>

<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-meta</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-security</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>swagger-validator</artifactId>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
Expand Down
Loading