-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Post for private projects for given endpoints
- Loading branch information
1 parent
27c541e
commit 571f1ee
Showing
5 changed files
with
215 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/main/java/gr/nikos/smartclideTDPrincipal/Analysis/RequestBodyEachEndpoint.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package gr.nikos.smartclideTDPrincipal.Analysis; | ||
|
||
public class RequestBodyEachEndpoint { | ||
private String fileName; | ||
private String endpointMethod; | ||
|
||
public RequestBodyEachEndpoint(String fileDir, String endpointMethod) { | ||
this.fileName = fileDir; | ||
this.endpointMethod = endpointMethod; | ||
} | ||
|
||
public String getFileName() { | ||
return fileName; | ||
} | ||
|
||
public String getEndpointMethod() { | ||
return endpointMethod; | ||
} | ||
|
||
public void setFileName(String fileName) { | ||
this.fileName = fileName; | ||
} | ||
|
||
public void setEndpointMethod(String endpointMethod) { | ||
this.endpointMethod = endpointMethod; | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
src/main/java/gr/nikos/smartclideTDPrincipal/Analysis/RequestBodyEndpoints.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package gr.nikos.smartclideTDPrincipal.Analysis; | ||
|
||
import java.util.List; | ||
|
||
public class RequestBodyEndpoints { | ||
private String sonarQubeProjectKey; | ||
private String gitUrl; | ||
private String gitToken; | ||
private List<RequestBodyEachEndpoint> requestBodyEachEndpointList; | ||
|
||
public RequestBodyEndpoints(String sonarQubeProjectKey, String gitUrl, String gitToken, List<RequestBodyEachEndpoint> requestBodyEachEndpointList) { | ||
this.sonarQubeProjectKey = sonarQubeProjectKey; | ||
this.gitUrl = gitUrl; | ||
this.gitToken = gitToken; | ||
this.requestBodyEachEndpointList= requestBodyEachEndpointList; | ||
} | ||
|
||
public String getSonarQubeProjectKey() { | ||
return sonarQubeProjectKey; | ||
} | ||
|
||
public String getGitUrl() { | ||
return gitUrl; | ||
} | ||
|
||
public String getGitToken() { | ||
return gitToken; | ||
} | ||
|
||
public List<RequestBodyEachEndpoint> getRequestBodyEachEndpointList() { | ||
return requestBodyEachEndpointList; | ||
} | ||
|
||
public void setSonarQubeProjectKey(String sonarQubeProjectKey) { | ||
this.sonarQubeProjectKey = sonarQubeProjectKey; | ||
} | ||
|
||
public void setGitUrl(String folderName) { | ||
this.gitUrl = folderName; | ||
} | ||
|
||
public void setGitToken(String gitToken) { | ||
this.gitToken = gitToken; | ||
} | ||
|
||
public void setRequestBodyEachEndpointList(List<RequestBodyEachEndpoint> requestBodyEachEndpointList) { | ||
this.requestBodyEachEndpointList = requestBodyEachEndpointList; | ||
} | ||
} |