├── .gitattributes ├── .gitignore ├── Android Project ├── Attendance-Management-System-Student │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ └── vcs.xml │ ├── Attendance-Management-System-Student.iml │ ├── app │ │ ├── .gitignore │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── libs │ │ │ ├── ksoap2-android-assembly-3.4.0-jar-with-dependencies.jar │ │ │ ├── simple-xml-2.7.1.jar │ │ │ └── zxing-2.1.jar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── blogspot │ │ │ │ └── aruncyberspace │ │ │ │ └── attendance_management_system_student │ │ │ │ └── ApplicationTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── blogspot │ │ │ │ └── aruncyberspace │ │ │ │ └── attendance_management_system_student │ │ │ │ ├── Course.java │ │ │ │ ├── GetTopicsResponse.java │ │ │ │ ├── Professor.java │ │ │ │ ├── PromptDialog.java │ │ │ │ ├── QRCodeGenerateActivity.java │ │ │ │ ├── SignInActivity.java │ │ │ │ ├── SignUpActivity.java │ │ │ │ ├── StudentMainActivity.java │ │ │ │ ├── User.java │ │ │ │ └── ViewTopics.java │ │ │ └── res │ │ │ ├── layout-v17 │ │ │ └── activity_student_main.xml │ │ │ ├── layout │ │ │ ├── activity_qrcode_generate.xml │ │ │ ├── activity_sign_in.xml │ │ │ ├── activity_sign_up.xml │ │ │ ├── activity_student_main.xml │ │ │ ├── activity_view_topics.xml │ │ │ └── input_layout.xml │ │ │ ├── menu │ │ │ ├── menu_qrcode_generate.xml │ │ │ ├── menu_sign_in.xml │ │ │ ├── menu_sign_up.xml │ │ │ ├── menu_student_main.xml │ │ │ └── menu_view_topics.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── loginimage.png │ │ │ └── logo_small.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Attendance_Management_System_Professor │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml │ ├── Attendance_Management_System_Professor.iml │ ├── BarcodeScanner-4.7.3.apk │ ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── libs │ │ └── simple-xml-2.7.1.jar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── blogspot │ │ │ └── aruncyberspace │ │ │ └── attendance_management_system_professor │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── blogspot │ │ │ └── aruncyberspace │ │ │ └── attendance_management_system_professor │ │ │ ├── AddManualAttendanceRequest.java │ │ │ ├── AddTopicsActivity.java │ │ │ ├── AddTopicsRequest.java │ │ │ ├── Course.java │ │ │ ├── DailyReport.java │ │ │ ├── GetManualStudentsInCourseResponse.java │ │ │ ├── ManualAttendanceActivity.java │ │ │ ├── ManualStudent.java │ │ │ ├── NavigationDrawerFragment.java │ │ │ ├── Professor.java │ │ │ ├── ProfessorMainActivity.java │ │ │ ├── QRScannerActivity.java │ │ │ ├── ReportActivity.java │ │ │ ├── ReportResponse.java │ │ │ ├── SignInActivity.java │ │ │ ├── SignUpActivity.java │ │ │ └── User.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── drawer_shadow.9.png │ │ └── ic_drawer.png │ │ ├── drawable-mdpi │ │ ├── drawer_shadow.9.png │ │ └── ic_drawer.png │ │ ├── drawable-xhdpi │ │ ├── drawer_shadow.9.png │ │ └── ic_drawer.png │ │ ├── drawable-xxhdpi │ │ ├── drawer_shadow.9.png │ │ └── ic_drawer.png │ │ ├── layout-v17 │ │ └── activity_professor_main.xml │ │ ├── layout │ │ ├── activity_add_topics.xml │ │ ├── activity_manual_attendance.xml │ │ ├── activity_professor_main.xml │ │ ├── activity_qrreader.xml │ │ ├── activity_qrscanner.xml │ │ ├── activity_report.xml │ │ ├── activity_sign_in.xml │ │ ├── activity_sign_up.xml │ │ ├── fragment_navigation_drawer.xml │ │ └── fragment_professor_main.xml │ │ ├── menu │ │ ├── global.xml │ │ ├── menu_add_topics.xml │ │ ├── menu_manual_attendance.xml │ │ ├── menu_professor_main.xml │ │ ├── menu_qrreader.xml │ │ ├── menu_qrscanner.xml │ │ ├── menu_report.xml │ │ ├── menu_sign_in.xml │ │ ├── menu_sign_up.xml │ │ └── professor_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_manual_icon.png │ │ ├── ic_qrcode_reader.png │ │ ├── ic_report.png │ │ ├── loginimage.png │ │ └── logo_small.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Attendance Management System.pptx ├── README.md └── Web Service Project └── AMSWebServices ├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── WebContent ├── META-INF │ └── MANIFEST.MF └── WEB-INF │ ├── lib │ ├── aopalliance-repackaged-2.4.0-b10.jar │ ├── asm-debug-all-5.0.2.jar │ ├── hk2-api-2.4.0-b10.jar │ ├── hk2-locator-2.4.0-b10.jar │ ├── hk2-utils-2.4.0-b10.jar │ ├── javassist-3.18.1-GA.jar │ ├── javax.annotation-api-1.2.jar │ ├── javax.inject-2.4.0-b10.jar │ ├── javax.servlet-api-3.0.1.jar │ ├── javax.ws.rs-api-2.0.1.jar │ ├── jaxb-api-2.2.7.jar │ ├── jersey-client.jar │ ├── jersey-common.jar │ ├── jersey-container-servlet-core.jar │ ├── jersey-container-servlet.jar │ ├── jersey-guava-2.17.jar │ ├── jersey-media-jaxb.jar │ ├── jersey-server.jar │ ├── mysql-connector-java-5.1.35-bin.jar │ ├── org.osgi.core-4.2.0.jar │ ├── osgi-resource-locator-1.0.1.jar │ ├── persistence-api-1.0.jar │ ├── simple-xml-2.7.1.jar │ └── validation-api-1.1.0.Final.jar │ └── web.xml ├── build └── classes │ └── com │ └── blogspot │ └── aruncyberspace │ └── webservices │ ├── AMSWebServiceImpl.class │ ├── AddAttenance.class │ ├── AddManualAttendanceRequest.class │ ├── AddTopicsRequest.class │ ├── Course.class │ ├── DailyReport.class │ ├── GetManualStudentsInCourseResponse.class │ ├── GetTopicsResponse.class │ ├── ManualStudent.class │ ├── MySQLHelper.class │ ├── Professor.class │ ├── ReportResponse.class │ ├── Student.class │ └── User.class └── src └── com └── blogspot └── aruncyberspace └── webservices ├── AMSWebServiceImpl.java ├── AddAttenance.java ├── AddManualAttendanceRequest.java ├── AddTopicsRequest.java ├── Course.java ├── DailyReport.java ├── GetManualStudentsInCourseResponse.java ├── GetTopicsResponse.java ├── ManualStudent.java ├── MySQLHelper.java ├── Professor.java ├── ReportResponse.java ├── Student.java └── User.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/.gitignore -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.gitignore -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/.name: -------------------------------------------------------------------------------- 1 | Attendance-Management-System-Student -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/compiler.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/encodings.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/gradle.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/misc.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/modules.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/.idea/vcs.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/Attendance-Management-System-Student.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/Attendance-Management-System-Student.iml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/app.iml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/build.gradle -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/libs/ksoap2-android-assembly-3.4.0-jar-with-dependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/libs/ksoap2-android-assembly-3.4.0-jar-with-dependencies.jar -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/libs/simple-xml-2.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/libs/simple-xml-2.7.1.jar -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/libs/zxing-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/libs/zxing-2.1.jar -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/androidTest/java/com/blogspot/aruncyberspace/attendance_management_system_student/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/androidTest/java/com/blogspot/aruncyberspace/attendance_management_system_student/ApplicationTest.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/Course.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/GetTopicsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/GetTopicsResponse.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/Professor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/Professor.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/PromptDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/PromptDialog.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/QRCodeGenerateActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/QRCodeGenerateActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/SignInActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/SignInActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/SignUpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/SignUpActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/StudentMainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/StudentMainActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/User.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/ViewTopics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_student/ViewTopics.java -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout-v17/activity_student_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout-v17/activity_student_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_qrcode_generate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_qrcode_generate.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_sign_in.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_sign_up.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_student_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_student_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_view_topics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout/activity_view_topics.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/layout/input_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/layout/input_layout.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_qrcode_generate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_qrcode_generate.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_sign_in.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_sign_up.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_student_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_student_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_view_topics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/menu/menu_view_topics.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-hdpi/loginimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-hdpi/loginimage.png -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-hdpi/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-hdpi/logo_small.png -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/build.gradle -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/gradle.properties -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/gradlew -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance-Management-System-Student/gradlew.bat -------------------------------------------------------------------------------- /Android Project/Attendance-Management-System-Student/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.gitignore -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/.name: -------------------------------------------------------------------------------- 1 | Attendance_Management_System_Professor -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/compiler.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/encodings.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/gradle.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/misc.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/modules.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/.idea/vcs.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/Attendance_Management_System_Professor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/Attendance_Management_System_Professor.iml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/BarcodeScanner-4.7.3.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/BarcodeScanner-4.7.3.apk -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/app.iml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/build.gradle -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/libs/simple-xml-2.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/libs/simple-xml-2.7.1.jar -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/androidTest/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/androidTest/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ApplicationTest.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/AddManualAttendanceRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/AddManualAttendanceRequest.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/AddTopicsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/AddTopicsActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/AddTopicsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/AddTopicsRequest.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/Course.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/DailyReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/DailyReport.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/GetManualStudentsInCourseResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/GetManualStudentsInCourseResponse.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ManualAttendanceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ManualAttendanceActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ManualStudent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ManualStudent.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/NavigationDrawerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/NavigationDrawerFragment.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/Professor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/Professor.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ProfessorMainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ProfessorMainActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/QRScannerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/QRScannerActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ReportActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ReportActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ReportResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/ReportResponse.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/SignInActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/SignInActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/SignUpActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/SignUpActivity.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/java/com/blogspot/aruncyberspace/attendance_management_system_professor/User.java -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-mdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-mdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xxhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout-v17/activity_professor_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout-v17/activity_professor_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_add_topics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_add_topics.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_manual_attendance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_manual_attendance.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_professor_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_professor_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_qrreader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_qrreader.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_qrscanner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_qrscanner.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_report.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_sign_in.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/activity_sign_up.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/fragment_navigation_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/fragment_navigation_drawer.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/fragment_professor_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/layout/fragment_professor_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/global.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_add_topics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_add_topics.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_manual_attendance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_manual_attendance.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_professor_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_professor_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_qrreader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_qrreader.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_qrscanner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_qrscanner.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_report.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_sign_in.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_sign_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/menu_sign_up.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/professor_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/menu/professor_main.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_manual_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_manual_icon.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_qrcode_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_qrcode_reader.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/ic_report.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/loginimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/loginimage.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-hdpi/logo_small.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/build.gradle -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/gradle.properties -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/gradlew -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Android Project/Attendance_Management_System_Professor/gradlew.bat -------------------------------------------------------------------------------- /Android Project/Attendance_Management_System_Professor/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Attendance Management System.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Attendance Management System.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/README.md -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/.classpath -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/.project -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/.settings/.jsdtscope -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/aopalliance-repackaged-2.4.0-b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/aopalliance-repackaged-2.4.0-b10.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/asm-debug-all-5.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/asm-debug-all-5.0.2.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/hk2-api-2.4.0-b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/hk2-api-2.4.0-b10.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/hk2-locator-2.4.0-b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/hk2-locator-2.4.0-b10.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/hk2-utils-2.4.0-b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/hk2-utils-2.4.0-b10.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javassist-3.18.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javassist-3.18.1-GA.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.annotation-api-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.annotation-api-1.2.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.inject-2.4.0-b10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.inject-2.4.0-b10.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.servlet-api-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.servlet-api-3.0.1.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.ws.rs-api-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/javax.ws.rs-api-2.0.1.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jaxb-api-2.2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jaxb-api-2.2.7.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-client.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-client.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-common.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-common.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-container-servlet-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-container-servlet-core.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-container-servlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-container-servlet.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-guava-2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-guava-2.17.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-media-jaxb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-media-jaxb.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-server.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/jersey-server.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/mysql-connector-java-5.1.35-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/mysql-connector-java-5.1.35-bin.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/org.osgi.core-4.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/org.osgi.core-4.2.0.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/osgi-resource-locator-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/osgi-resource-locator-1.0.1.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/persistence-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/persistence-api-1.0.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/simple-xml-2.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/simple-xml-2.7.1.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/validation-api-1.1.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/lib/validation-api-1.1.0.Final.jar -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AMSWebServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AMSWebServiceImpl.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AddAttenance.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AddAttenance.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AddManualAttendanceRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AddManualAttendanceRequest.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AddTopicsRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/AddTopicsRequest.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/Course.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/Course.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/DailyReport.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/DailyReport.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/GetManualStudentsInCourseResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/GetManualStudentsInCourseResponse.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/GetTopicsResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/GetTopicsResponse.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/ManualStudent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/ManualStudent.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/MySQLHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/MySQLHelper.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/Professor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/Professor.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/ReportResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/ReportResponse.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/Student.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/build/classes/com/blogspot/aruncyberspace/webservices/User.class -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AMSWebServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AMSWebServiceImpl.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AddAttenance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AddAttenance.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AddManualAttendanceRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AddManualAttendanceRequest.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AddTopicsRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/AddTopicsRequest.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/Course.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/Course.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/DailyReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/DailyReport.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/GetManualStudentsInCourseResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/GetManualStudentsInCourseResponse.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/GetTopicsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/GetTopicsResponse.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/ManualStudent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/ManualStudent.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/MySQLHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/MySQLHelper.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/Professor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/Professor.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/ReportResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/ReportResponse.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/Student.java -------------------------------------------------------------------------------- /Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArunGopinathan/AttendanceManagementSystemUsingQRCode/HEAD/Web Service Project/AMSWebServices/src/com/blogspot/aruncyberspace/webservices/User.java --------------------------------------------------------------------------------