From 65376b95cde553d16da893f6650373954cc00983 Mon Sep 17 00:00:00 2001 From: Mars Ultor Date: Tue, 11 Mar 2025 20:22:47 -0500 Subject: [PATCH] yo i got stuff --- .idea/.gitignore | 3 + .idea/compiler.xml | 13 ++ .idea/jarRepositories.xml | 20 +++ .idea/material_theme_project_new.xml | 12 ++ .idea/misc.xml | 12 ++ .idea/vcs.xml | 6 + pom.xml | 39 +++++ .../java/net/ayyalasomayajula/net/App.java | 10 ++ .../net/shared/Appointment.java | 20 +++ .../net/ayyalasomayajula/net/shared/EHR.java | 156 ++++++++++++++++++ .../ayyalasomayajula/net/shared/Message.java | 18 ++ .../net/shared/MessageVariant.java | 22 +++ .../net/ayyalasomayajula/net/AppTest.java | 38 +++++ target/classes/EHR.class | Bin 0 -> 2810 bytes .../net/ayyalasomayajula/net/App.class | Bin 0 -> 563 bytes .../ayyalasomayajula/net/Appointment.class | Bin 0 -> 2300 bytes .../net/ayyalasomayajula/net/Message.class | Bin 0 -> 1979 bytes .../ayyalasomayajula/net/MessageVariant.class | Bin 0 -> 1483 bytes target/maven-archiver/pom.properties | 3 + .../compile/default-compile/createdFiles.lst | 1 + .../compile/default-compile/inputFiles.lst | 1 + .../default-testCompile/createdFiles.lst | 1 + .../default-testCompile/inputFiles.lst | 1 + target/my-app-1.0-SNAPSHOT.jar | Bin 0 -> 2434 bytes .../TEST-net.ayyalasomayajula.net.AppTest.xml | 57 +++++++ .../net.ayyalasomayajula.net.AppTest.txt | 4 + .../net/ayyalasomayajula/net/AppTest.class | Bin 0 -> 627 bytes 27 files changed, 437 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/material_theme_project_new.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 pom.xml create mode 100644 src/main/java/net/ayyalasomayajula/net/App.java create mode 100644 src/main/java/net/ayyalasomayajula/net/shared/Appointment.java create mode 100644 src/main/java/net/ayyalasomayajula/net/shared/EHR.java create mode 100644 src/main/java/net/ayyalasomayajula/net/shared/Message.java create mode 100644 src/main/java/net/ayyalasomayajula/net/shared/MessageVariant.java create mode 100644 src/test/java/net/ayyalasomayajula/net/AppTest.java create mode 100644 target/classes/EHR.class create mode 100644 target/classes/net/ayyalasomayajula/net/App.class create mode 100644 target/classes/net/ayyalasomayajula/net/Appointment.class create mode 100644 target/classes/net/ayyalasomayajula/net/Message.class create mode 100644 target/classes/net/ayyalasomayajula/net/MessageVariant.class create mode 100644 target/maven-archiver/pom.properties create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst create mode 100644 target/my-app-1.0-SNAPSHOT.jar create mode 100644 target/surefire-reports/TEST-net.ayyalasomayajula.net.AppTest.xml create mode 100644 target/surefire-reports/net.ayyalasomayajula.net.AppTest.txt create mode 100644 target/test-classes/net/ayyalasomayajula/net/AppTest.class diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..6e7dddc --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..712ab9d --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/material_theme_project_new.xml b/.idea/material_theme_project_new.xml new file mode 100644 index 0000000..a6e0fa4 --- /dev/null +++ b/.idea/material_theme_project_new.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..a7acce9 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..3bcf8aa --- /dev/null +++ b/pom.xml @@ -0,0 +1,39 @@ + + 4.0.0 + net.ayyalasomayajula.net + my-app + jar + 1.0-SNAPSHOT + my-app + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + + + + + org.codehaus.mojo + exec-maven-plugin + 3.3.0 + + net.ayyalasomayajula.net.App + + + + org.apache.maven.plugins + maven-compiler-plugin + + 16 + 16 + + + + + diff --git a/src/main/java/net/ayyalasomayajula/net/App.java b/src/main/java/net/ayyalasomayajula/net/App.java new file mode 100644 index 0000000..c29e7d7 --- /dev/null +++ b/src/main/java/net/ayyalasomayajula/net/App.java @@ -0,0 +1,10 @@ +package net.ayyalasomayajula.net; + + +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/src/main/java/net/ayyalasomayajula/net/shared/Appointment.java b/src/main/java/net/ayyalasomayajula/net/shared/Appointment.java new file mode 100644 index 0000000..d1c281b --- /dev/null +++ b/src/main/java/net/ayyalasomayajula/net/shared/Appointment.java @@ -0,0 +1,20 @@ +package net.ayyalasomayajula.net.shared; + +import java.time.LocalDateTime; +import java.util.UUID; + +/** + * Represents an appointment using a record. + * + * @author Krishna Ayyalasomayajula + * @version 1.0 + */ +public record Appointment(UUID uuid, UUID patient, LocalDateTime time, boolean attendance, String description) { + /** + * Evaluates whether the allotted time has already passed. + * @return boolean object, true if date time is past + */ + public boolean isPast() { + return time.isBefore(LocalDateTime.now()); + } +} diff --git a/src/main/java/net/ayyalasomayajula/net/shared/EHR.java b/src/main/java/net/ayyalasomayajula/net/shared/EHR.java new file mode 100644 index 0000000..3c766be --- /dev/null +++ b/src/main/java/net/ayyalasomayajula/net/shared/EHR.java @@ -0,0 +1,156 @@ +import net.ayyalasomayajula.net.shared.Appointment; +import net.ayyalasomayajula.net.shared.Message; + +import java.nio.file.Path; +import java.time.LocalDateTime; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +/** + * Electronic health record of the patient. + * + * This class stores and manages patient information, including medical notes, appointments, and X-ray records. + * + * @author Krishna Ayyalasomayajula + * @version 1.0 + */ +public class EHR { + private String patientName; + private UUID uuid; + private List medicalNotes; + private List appointmentLog; + private final LocalDateTime dob; + private final LocalDateTime joinDate; + private List xrays; + + /** + * Constructs an Electronic Health Record (EHR) for a patient. + * + * @param patientName The name of the patient. + * @param uuid Unique identifier for the patient. + * @param medicalNotes List of medical notes related to the patient. + * @param appointmentLog List of appointments associated with the patient. + * @param dob Date of birth of the patient. + * @param joinDate Date the patient joined the system. + * @param xrays List of X-ray file paths. + */ + public EHR(String patientName, UUID uuid, List medicalNotes, List appointmentLog, + LocalDateTime dob, LocalDateTime joinDate, List xrays) { + this.patientName = patientName; + this.uuid = uuid; + this.medicalNotes = new ArrayList<>(medicalNotes); + this.appointmentLog = new ArrayList<>(appointmentLog); + this.dob = dob; + this.joinDate = joinDate; + this.xrays = new ArrayList<>(xrays); + } + + /** + * Gets the patient's name. + * + * @return The patient's name. + */ + public String getPatientName() { + return patientName; + } + + /** + * Sets the patient's name. + * + * @param patientName The new patient name. + */ + public void setPatientName(String patientName) { + this.patientName = patientName; + } + + /** + * Gets the unique identifier of the patient. + * + * @return The patient's UUID. + */ + public UUID getUuid() { + return uuid; + } + + /** + * Sets the unique identifier of the patient. + * + * @param uuid The new UUID. + */ + public void setUuid(UUID uuid) { + this.uuid = uuid; + } + + /** + * Gets the list of medical notes. + * + * @return List of medical notes. + */ + public List getMedicalNotes() { + return medicalNotes; + } + + /** + * Adds a medical note to the record. + * + * @param note The medical note to add. + */ + public void addMedicalNote(String note) { + this.medicalNotes.add(note); + } + + /** + * Gets the appointment log. + * + * @return List of appointments. + */ + public List getAppointmentLog() { + return appointmentLog; + } + + /** + * Adds an appointment to the log. + * + * @param appointment The appointment to add. + */ + public void addAppointment(Appointment appointment) { + this.appointmentLog.add(appointment); + } + + /** + * Gets the patient's date of birth. + * + * @return The date of birth. + */ + public LocalDateTime getDob() { + return dob; + } + + /** + * Gets the patient's join date. + * + * @return The join date. + */ + public LocalDateTime getJoinDate() { + return joinDate; + } + + /** + * Gets the list of X-ray file paths. + * + * @return List of X-ray file paths. + */ + public List getXrays() { + return xrays; + } + + /** + * Adds an X-ray file path to the record. + * + * @param xray The X-ray file path to add. + */ + public void addXray(Path xray) { + this.xrays.add(xray); + } +} diff --git a/src/main/java/net/ayyalasomayajula/net/shared/Message.java b/src/main/java/net/ayyalasomayajula/net/shared/Message.java new file mode 100644 index 0000000..4dbe7da --- /dev/null +++ b/src/main/java/net/ayyalasomayajula/net/shared/Message.java @@ -0,0 +1,18 @@ +package net.ayyalasomayajula.net.shared; + +/** + * Encapsulates the socket message objects using a record. + * + * @author Krishna Ayyalasomayajula + * @version 1.0 + */ +public record Message(MessageVariant messageVariant, String messageQuery, int timeoutSeconds, byte[] data) { + /** + * Constructor for Message record. + * @author Krishna Ayyalasomayajula + * @version 1.0 + */ + public Message { + // Validation or preprocessing can be added here if necessary. + } +} diff --git a/src/main/java/net/ayyalasomayajula/net/shared/MessageVariant.java b/src/main/java/net/ayyalasomayajula/net/shared/MessageVariant.java new file mode 100644 index 0000000..c8af66b --- /dev/null +++ b/src/main/java/net/ayyalasomayajula/net/shared/MessageVariant.java @@ -0,0 +1,22 @@ +package net.ayyalasomayajula.net.shared; + +public enum MessageVariant{ + GET("GET"), SET("SET"), UPSERT("UPSERT"), INSERT("INSERT"); + + + private final String text; + /** + * Constructor that stores the text of the enum field + */ + MessageVariant(String key){ + text=key; + } + /** + * Override toString method + * @return string text of the MessageVariant + */ + @Override + public String toString(){ + return this.text; + } +} \ No newline at end of file diff --git a/src/test/java/net/ayyalasomayajula/net/AppTest.java b/src/test/java/net/ayyalasomayajula/net/AppTest.java new file mode 100644 index 0000000..8504dfd --- /dev/null +++ b/src/test/java/net/ayyalasomayajula/net/AppTest.java @@ -0,0 +1,38 @@ +package net.ayyalasomayajula.net; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/target/classes/EHR.class b/target/classes/EHR.class new file mode 100644 index 0000000000000000000000000000000000000000..857c79b2c277653479c8d8c862a9a6cd670707cd GIT binary patch literal 2810 zcmX^0Z`VEs1_m1jPc8-~24;2!79Ivx1~x_pfvm)`ME#t^ymWp4q^#8B5=I6#o6Nk- z5<5l)W)00SP6iGJPId+^9tLg(9!3UcSC1e@2JV8ylFZb+62HXUR7M6NAA}jfB}JKe z>DC}!d^`;N3<8V{ETyHHDU1vP5LKlmnK}BQp`I>aH9|ZL!VDse3_Q81DVfQMIez&i zsl}*jeKLznz-q;K7{ozp`4S5X@-y>Fa#Qn4eDc#lR!Qq8KA(!pa?RXwW27ovY3&9GdMFn zFR`SwD3y^x1!5f7;ULG@K=|MwgL>D_nvuZ*B8;RgFSSHJv9dBTC$Ts`H?cA?t28H3 zA0+6A@PIW)s~Uz@aDe7z=If_r=A`NeB$i}=6}D?YR3h6A5dm8Z4pt;S$hFqk`B(x6 zq7bJ9*aonPnqiC#EYA5Usf-N#KACx`exJenk$RGxe6}Xzpf>fxwo22^>YivNg0(Y^E4=B`$hzf{4oI!w70?8(>j&8Tg9P)QMsV6p(@J>8T~5;H)JCGYRYta4KMAU@wMA3quV+ z$bz)BU1v6=@`DVUyG zf|ON!^3xd^tgtwT$jD`65G=+t&>GV@M4AV3B3pWDi3_OAk%qYoOB!Kh;7(61@q!jN zj0_yQxzd85kK@8Pph<7}OaU7#=Y&F>o+2Fz9G)XJFLQ-patPrL&cRS4(#*gP@iq%T@+a zElJj`3=&$BY+D&*v?STLGRSXaU|?Wo&|qL-P-Ea^U|^79U}2DE;AD_t;A42!hzdpv9og00KH-e=&mW2Kx-;TOCks!@vv{6K4=% zU;(qF7^E3k!7MojX$Ceh3*;wu1|0?l1_h{kVFqO=OPoOks#B3cm4O`^Qo0O`40;Uu z42)oZgJ_W5tXf+b*f)TK3FIL*29TgC*ugwtHY?P@j0^@0hEUCR3{2q2VFL#kC^(qF z!2zne85lGfKzcx47K5mQn!v!o2K6!{gAs!<)GTC&@S;0J7pp@|7)+s>Q5?dH?hr!; zRt6)m378JyXAoduWME`4V=#xN1Z0N@qC3PCYz%6MKoXz@10#bagB8?}0OXJn1UU$j zP#_^=$-v5B1vUxOL6AfZicp9xYz&|Xg(Y)q21W)OtWFh0cd9Me0*E1?hybNFh*NDD z7#ZxaJ5?0jsg4Y+3{GH^Fr5lYnT+7H2eE~X0hHokPPJ!XWN=_`gvJnZs7jza)fH?3 z#1NQM85x|gYL-FQ?1@#gGuA+oN7w9&MKdIjTo@P`T(JidQpShGXCMPBLlD>`%s>KV VP}D#IWky&axiK&@xPx<@2LRN0Ee-$x literal 0 HcmV?d00001 diff --git a/target/classes/net/ayyalasomayajula/net/App.class b/target/classes/net/ayyalasomayajula/net/App.class new file mode 100644 index 0000000000000000000000000000000000000000..2972f5c927322aa970fc6cb5d062ead0b7bad029 GIT binary patch literal 563 zcmX^0Z`VEs1_m1jB`yXg24;2!79Ivx1~x_pfvm)`ME#t^ymWp4q^#8B5=I6#o6Nk- z5<5l)W)00SP6iGJPId+^9tLg(9u(!lmBl5gxr_|V`K2X{45B_@gEI5=1Bx>9N`gy@ zQWJBnIT-jD8F)NWb8_+(!t;xAQWUuu1Q-O_8H9Kkgc(E_8HBOuVq{=10GW}K$H*Y6 z0WlZsz~GXi%)E4K%`kQbF-8WNywno?#LCLVoW$b%+{DVntkRrBeUPAIK>;HJi*tTT zDkB5GPi9`KUukYqYEejHQcfx(gOE>ta$-(cVo@fD4;5r7$;d2bWRUX#>BnWLH6sH{ zZenI0BZHVmG&XlJGO#2Tr57_Y2xF0EWZ(+UFD*(=b;|@fgTt|)Ko8`521N!@1||j& zU}9hd#R>x>gE#{NgFXWz10w?i1FP0{2F8sH3=B*R5)2FsY+yka21y161|Be*l|hO@ znt_3VlR<_-7OL5t0c02h1Lr0Nb|Kzv4EzWKKq-KMfddq=NQQ7S$T7$>FfcGOD1fa} F1OPk0dCC9) literal 0 HcmV?d00001 diff --git a/target/classes/net/ayyalasomayajula/net/Appointment.class b/target/classes/net/ayyalasomayajula/net/Appointment.class new file mode 100644 index 0000000000000000000000000000000000000000..c436a5672c6fbbe9761d49a3a9d6c732e867d2bc GIT binary patch literal 2300 zcmX^0Z`VEs1_m33NG=8@24;2!79Ivx1~x_pfvm)`ME#t^ymbAb)a3l46h;O%o6Nk- z5<5l)W)00SP6iGJPId+^9tLg(9!3V0ywno?#LCLVoW$b%+{DVntkRrBeUPAIK|y|I zUP*3hUI`-uOKE9l3L}Gn57_k5lFS_a&`?hoYmjMtJPiCGqu2`)OEOdQNFsL#zaAX!crKaTZ@Dj1ppCU{L2_&|uJHWZ)>thq#cD!Aipi6t08<+ZyUJWZ!{I)aGH(VbEn{ z;K)cU&T!68fjEgc6For&=<_fbFc>m2u%#B3Cgv0~GFTJoAc()g?(t8`N=+`Y){J6g z@P~#6A~8VJq4TkXa1=x(*hEO^SZjtcGO$2=#qX1um+DuVo0M7$Rk zMg}%mo)vJ)&o3!1DM~DWIJ=mG!HtnY1C$M|q4~@j6tdQcJY$WNNB9{T*!dY5c=;I_ z1o#;lMEDsQB>34Fe7P9>82s580(ck#8G;xYJ(&CV18g{2xnxF!>^Q) zfeqqe215o81||ju237_kP_fFuz#s%F6T!3)gD{vDV-N?^QVh}z3=CWhj0~&{Mhr|0 z#taM$H4ID)Yzzzx3R>G47`3#wGO%muY-Qlp(%s4+pe4$(l|e*Hl65PC#6|`N1||j* z1_lN;21W)31|9}e1_lN@h+YOW26F}wPyo9DB(DH=1;}Lzpz@f38Ds~juw`HYvp{ZP zWw2miU=U?x;AUW8;0HUAfkBLcfkBFafq{|1lEI3B5$s4)1}3nj+*(^01a>gUY-3Pb zgXSI~uzPqQ%AoEMWYA!+h8khWzzCLO*V@IP#=x)vO*_Op5bf-6?K%uLShQ;~FreFx zUAqB;EmXS=0~0uwIJC5PG3epaF9uNqwVr{2gTao$9_(&z1_!7~`d~f-1FO~+26lYD zV1*jP$iRmW$EOLZ)EZ$Ve>CaL!LjWn@q# z#xzfmW+fg5Wd;>S2Da3~(!`u%Mh0^tv?95~KPf9Uxx`vCijl#QuufPwBN+e*0Bg@^ zC(STM1{R3>`F%3;QvFJElTwR95|eULLBXG&oR|aFpOljd6=W&N$Sh`LP$C?3j0^(4 zsU;ctDFKN^iMgpIsYS(%3?dp>LKK|pJQ*28HIN*M7FpshiCI%8yD z(a?-`Vr1Y7&Mz%WPIb!!`H=^jg!MqCGcvHj@`Hd=ett=DNl{_}#1F+B3>J(G`q1_~hqjmljwf z1tc`Kkwl;xLn;eWT~dpai!uvJ@{5qQIOil57b6Qm&4|V{1le|!+ye21H6sI$XI@@v z5!lGoVs-{MMg~=cpP^1cHU;Jfb_Ned208pn85!6h9%e9P;9y{4U|?Wj5CWB23=9lH zpfUwa3p0p-X>kS#1_lNW21W)}22}L(1G|>aRt8=z z*{uwMT9PbV8ALZSFfcGNs53AyfQnHD1`!5H1~CQ=1_lNbh)xDg1}z2<9 zH^@Cwpt6dA87u~}pM^o2fq_Agg@L<)fq}n)fkC)|fkC{1fkBW#nn8zw5$q^K21W*u zG3;8q7$g}OHo#rL1{UT6+s*@KvqNncWRPdj#iCu7fng0%+LamfpxSL1n7~2Fp{2cx zK@pdJF^C$d^`KzYXD|S}o0|dTeo)}*gZT^$tXf+b*zx&-6>1D413x?vkTvrXr&$;t z1jw2N@dW_FW^o21XaFE<7A3}J76xN*7@IJdf+Ly*oDdkmiGTr|02n}Z5(5K+88{&_ iGT1V(F>o-LGgvZMF<3L$Ft~t|7bAl!gFAyKgCqc{rmQ~z literal 0 HcmV?d00001 diff --git a/target/classes/net/ayyalasomayajula/net/MessageVariant.class b/target/classes/net/ayyalasomayajula/net/MessageVariant.class new file mode 100644 index 0000000000000000000000000000000000000000..3f9ce510bae7c5c7e33dfe5d123e83b4981bfa7d GIT binary patch literal 1483 zcmX^0Z`VEs1_m1j7j_0FMh5k~)Dr!~%F4u?#Nzzi#LC31(wsznkf3jBadBdLYFJ`X zW@26mCj%n`3l9S;0~;d)v%6~uBZH<7NEH!UtwDM@co;ardV^gYh)Wh27t|1;9*c?P-0|Yv&qcMEU{x` z5JNT!s?$?53=}*nJPfJ~YK#mlC8-r9j0{4UR&X$|axpM6Xo3vYVr0<3W)`L{%`grI zP7Veh4hDXZZhamG0|rA-_=5dc%*ddlp-FrQGcvHj^szYSr=&76@cU%urTUfTCZ!gI zBqrsgGBVg=aTxJQ2junq}NP)5mNCyKagAoHrzcB*?gAxNH0|;F0=inX+5wlm0U>276E-pBw_1G1iv zfti7Uft!Jifro*cftLYftQZ3mNIiok*lQqbtQgc7n86nCGBYp;FhDQ^1A{f#AR7io z23rO@21c-j`V5RgY#|%#z-M`W+Cupm zn893a79njgmmSR2VHMH=bGg7=T{a JPGIjl0|1ekH*)|0 literal 0 HcmV?d00001 diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..406f13a --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +artifactId=my-app +groupId=net.ayyalasomayajula.net +version=1.0-SNAPSHOT diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..2075889 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1 @@ +net/ayyalasomayajula/net/App.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..b8396fa --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +/home/kbot/Downloads/Comp-Sci-IA-Forms/Forms/Product/my-app/src/main/java/net/ayyalasomayajula/net/App.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..c92b681 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1 @@ +net/ayyalasomayajula/net/AppTest.class diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..4dc6fa0 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1 @@ +/home/kbot/Downloads/Comp-Sci-IA-Forms/Forms/Product/my-app/src/test/java/net/ayyalasomayajula/net/AppTest.java diff --git a/target/my-app-1.0-SNAPSHOT.jar b/target/my-app-1.0-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..98354dc758210a1a5aa011a45e2cb462ae24f649 GIT binary patch literal 2434 zcmWIWW@h1HVBlb2U}BGoVn70%3=9mut|5-Po_=onAY~#93>+L_Ww)Xpbp$amFa$C% zFo+;4^L6y|baM?3(erit?0e?4kGHPgMP6@Rt#fD2Zw@lJV*KD~k)D^Yj;HU%(p6i6 zKKSZ*pAG&{#1q7ELeuyBnP7u!#utsBJT1~Xd&cwPSFe-Tc=bGdw*?t6b$u*iWB|DV zyHi;h7#Q+WOTezgu0j;5BC)bEF(vxrt?|d3fy5 zz*L-XTqfZl!KwK>^rFi1_^SQRz(rBLjmm69a=1K5sh~6zC=ABo-If z2Kst41&Y|}+aHr$ZsPmf=yKStMK@V=dlZ^73_}ubEV>#j|Lw`yo}Tjwbz!<(QD2yU z1zw!%dBUNpyL!j-Io0o)fB*dYkMV&7yI9x+qY2w4I!;??@y!2D;2n8O^S>J)n-xB2b z*pB1shRlT>rOc|*sW}Eyru!I5Ox_V}cXZpG*4|k!0+-)44oF?`)5+SVYsaI@2ObN` zpBE`l`cz|-=n>E2d@!J3ss6h3xcHXxJ?lF(cOGn5EytgF=lsbnbyI@dcKwdeXs?l* z{$*{}>%^P;J)S@8C_3ex!nRua%%R2|Q$8M(VU;_oW)iq?_K|#6oqb$aeP78qxy`Vw zVXpRjqPyy5i^&GxtN#oW*mt+6W!;#~KVK#B$le1QYxgbsAf2Fk`%_6owc-&M+21WZ zy+>~TVFRUgNc{X|i;C(vC)7Kek%8egGXsMe>5*NKpQ~4qo6{S7+V8M|z@G2gtL`N) zpTfM#N972sN?efOqcGh*Pnk#UIm>hZ$=&w6-Lg$+`K`PL>2TsU^+ChL2a_7sJuKE^YRJuNpg zN;u`R^ZW_xeUe;kXj^dE_}D+CO#O<+ybCo;?3d|=&PwfzjK5o3p7kN(oI+n0^Ovh1 zcFlJ#x%=bj&Dz_{MJ#S@fAj>tu8(#~o)|FI%CJ0Z;#&#dU5{T@&EH&|R3*swvj62g zm#KfAxh6ky?JqXeZ#Z3DpY-j|-oFxg-kdM=_WYY@J+D!p=i_m+8|UplU1j;6{Waoy zbNb|XM0A5n;ggd~z1$fX7(5sl7;MRl?t-HHg4Cjt%+z9U9j%i--adLCeKww5d&O5r zmD}2?*mfPP>tj49 z_fIi~A;6oFNrV}D;R>oLAQguI!&^rX3#r}!X@jI>kk`;_4v=CHUec(J>`|n81fRvA zav!9dfdORkYG}!YPlqT(IRiw;S*Q;5@>U<85ukbjVhYGo21ZELgJA@u$Oicyd!T{p z34}4`j7XI&tk%G-8B}i|G^b!{##4*nHWgHlAWU6Ff~oLY1!OoPw$bYqh~W$jOB%o9 z3pRKy1BnKRdDzN9gn84MF~SdL5I`LZEftaN0Hsj$%!ja}jg>4r5Lq$6o0Sb@95(|u Mg9|eQg9exf09I-SF#rGn literal 0 HcmV?d00001 diff --git a/target/surefire-reports/TEST-net.ayyalasomayajula.net.AppTest.xml b/target/surefire-reports/TEST-net.ayyalasomayajula.net.AppTest.xml new file mode 100644 index 0000000..9143578 --- /dev/null +++ b/target/surefire-reports/TEST-net.ayyalasomayajula.net.AppTest.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/surefire-reports/net.ayyalasomayajula.net.AppTest.txt b/target/surefire-reports/net.ayyalasomayajula.net.AppTest.txt new file mode 100644 index 0000000..fdd8c1c --- /dev/null +++ b/target/surefire-reports/net.ayyalasomayajula.net.AppTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: net.ayyalasomayajula.net.AppTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 s -- in net.ayyalasomayajula.net.AppTest diff --git a/target/test-classes/net/ayyalasomayajula/net/AppTest.class b/target/test-classes/net/ayyalasomayajula/net/AppTest.class new file mode 100644 index 0000000000000000000000000000000000000000..c5848180b795da9f2ac67d4a9b3c219192744550 GIT binary patch literal 627 zcmX^0Z`VEs1_l!bc`gPf24;2!79Ivx1~x_piLBDR%o6>yqQuXJFjOz`(%7Ak4tP0E$Ki1`!5U22lnP1_lN(h$;qA z1~HH!3~UVI3=#~C44e#-3{p_Dlo*)7a$LI^*dv8Fw=-~WU|?Wi1e?dkz{tSBAj81O oAPpu#b{jJ=f<;+bb};avTdl&t!k`Mang^l?YBeK+EZC890JbuMxc~qF literal 0 HcmV?d00001