Skip to content
This repository has been archived by the owner on Jul 29, 2021. It is now read-only.

Commit

Permalink
refactor(reporter): Log and metrics reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
brasseld authored and NicolasGeraud committed Oct 17, 2017
1 parent 7099eca commit 9e525a4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<name>Gravitee.io APIM - Repository - API</name>

<properties>
<gravitee-common.version>1.5.0</gravitee-common.version>
<gravitee-common.version>1.6.0-SNAPSHOT</gravitee-common.version>
</properties>

<dependencies>
Expand Down
20 changes: 0 additions & 20 deletions src/main/java/io/gravitee/repository/log/model/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ public class Log {

private String uri;

private String path;

private HttpMethod method;

private int status;
Expand All @@ -47,8 +45,6 @@ public class Log {

private String apiKey;

private String user;

private String plan;

private String api;
Expand Down Expand Up @@ -99,14 +95,6 @@ public void setUri(String uri) {
this.uri = uri;
}

public String getPath() {
return path;
}

public void setPath(String path) {
this.path = path;
}

public HttpMethod getMethod() {
return method;
}
Expand Down Expand Up @@ -219,14 +207,6 @@ public void setTenant(String tenant) {
this.tenant = tenant;
}

public String getUser() {
return user;
}

public void setUser(String user) {
this.user = user;
}

public String getMessage() {
return message;
}
Expand Down

0 comments on commit 9e525a4

Please sign in to comment.