-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Tidyup configuration * Tidyup configuration * bounce postgresql lib version - vulnerable to SQL Injection * bounce postgresql lib version 4.6.2 - vulnerable to SQL Injection
- Loading branch information
Showing
17 changed files
with
114 additions
and
133 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
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
18 changes: 0 additions & 18 deletions
18
.../JeMPI_LibMPI/src/main/java/org/jembi/jempi/libmpi/postgresql/CustomGoldenRecordData.java
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
...s/JeMPI_LibMPI/src/main/java/org/jembi/jempi/libmpi/postgresql/CustomInteractionData.java
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
...I_Apps/JeMPI_LibMPI/src/main/java/org/jembi/jempi/libmpi/postgresql/GoldenRecordData.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,11 @@ | ||
package org.jembi.jempi.libmpi.postgresql; | ||
|
||
import org.jembi.jempi.shared.models.CustomDemographicData; | ||
|
||
final class GoldenRecordData extends CustomDemographicData implements NodeData { | ||
|
||
GoldenRecordData(final CustomDemographicData customDemographicData) { | ||
super(customDemographicData); | ||
} | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
JeMPI_Apps/JeMPI_LibMPI/src/main/java/org/jembi/jempi/libmpi/postgresql/InteractionData.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,12 @@ | ||
package org.jembi.jempi.libmpi.postgresql; | ||
|
||
import org.jembi.jempi.shared.models.CustomDemographicData; | ||
|
||
final class InteractionData extends CustomDemographicData implements NodeData { | ||
|
||
InteractionData(final CustomDemographicData customDemographicData) { | ||
super(customDemographicData); | ||
} | ||
|
||
} | ||
|
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
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
Oops, something went wrong.