├── .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 ├── Diagram.png ├── Diagram.ucls ├── README.md ├── ScreenShots ├── HomePage.png ├── LaundriesList.png ├── LaundryForm.png └── UpdateStatus.png ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── config │ │ └── alms-servlet.xml │ ├── lib │ │ ├── activation-1.0.2.jar │ │ ├── activation-1.1.jar │ │ ├── antlr-2.7.6.jar │ │ ├── aopalliance-1.0.jar │ │ ├── asm-1.5.3.jar │ │ ├── asm-attrs-1.5.3.jar │ │ ├── cglib-2.1_3.jar │ │ ├── commons-beanutils-1.7.0.jar │ │ ├── commons-codec-1.9.jar │ │ ├── commons-collections-2.1.1.jar │ │ ├── commons-digester-1.8.jar │ │ ├── commons-email-1.0.jar │ │ ├── commons-fileupload-1.1.1.jar │ │ ├── commons-io-1.1.jar │ │ ├── commons-lang-2.5.jar │ │ ├── commons-logging-1.1.1.jar │ │ ├── commons-logging-1.2.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── dumbster-1.6.jar │ │ ├── ehcache-1.2.3.jar │ │ ├── guava-18.0.jar │ │ ├── hibernate-3.2.6.ga.jar │ │ ├── hibernate-annotations-3.3.1.GA.jar │ │ ├── hibernate-commons-annotations-3.0.0.ga.jar │ │ ├── hibernate-entitymanager-3.3.2.GA.jar │ │ ├── hibernate-search-3.0.0.GA.jar │ │ ├── hibernate-validator-4.0.2.GA.jar │ │ ├── httpclient-4.5.2.jar │ │ ├── httpcore-4.4.4.jar │ │ ├── icu4j-2.6.1.jar │ │ ├── jackson-annotations-2.8.11.jar │ │ ├── jackson-core-2.8.11.jar │ │ ├── jackson-databind-2.8.11.jar │ │ ├── javassist-3.4.GA.jar │ │ ├── jaxb-api-2.1.jar │ │ ├── jaxb-api-2.2.jar │ │ ├── jaxb-impl-2.1.3.jar │ │ ├── jaxen-1.1.1.jar │ │ ├── jdom-1.0.jar │ │ ├── jjwt-0.4.jar │ │ ├── joda-time-2.5.jar │ │ ├── jstl-1.2.jar │ │ ├── jta-1.1.jar │ │ ├── log4j-1.2.14.jar │ │ ├── lucene-core-2.3.2.jar │ │ ├── lucene-highlighter-2.0.0.jar │ │ ├── mail-1.4.jar │ │ ├── mysql-connector-java-5.0.5.jar │ │ ├── persistence-api-1.0.jar │ │ ├── quartz-1.5.2.jar │ │ ├── slf4j-api-1.5.6.jar │ │ ├── slf4j-api-1.7.6.jar │ │ ├── slf4j-log4j12-1.5.6.jar │ │ ├── spring-aop-3.0.1.RELEASE.jar │ │ ├── spring-asm-3.0.1.RELEASE.jar │ │ ├── spring-beans-3.0.1.RELEASE.jar │ │ ├── spring-context-3.0.1.RELEASE.jar │ │ ├── spring-core-3.0.1.RELEASE.jar │ │ ├── spring-expression-3.0.1.RELEASE.jar │ │ ├── spring-jdbc-3.0.1.RELEASE.jar │ │ ├── spring-orm-3.0.1.RELEASE.jar │ │ ├── spring-tx-3.0.1.RELEASE.jar │ │ ├── spring-web-3.0.1.RELEASE.jar │ │ ├── spring-webmvc-3.0.1.RELEASE.jar │ │ ├── stax-api-1.0-2.jar │ │ ├── twilio-7.30.0.jar │ │ ├── validation-api-1.0.0.GA.jar │ │ ├── xalan-2.6.0.jar │ │ ├── xercesImpl-2.6.2.jar │ │ ├── xml-apis-1.3.02.jar │ │ ├── xmlParserAPIs-2.6.2.jar │ │ └── xom-1.0.jar │ ├── views │ │ ├── addLaundry.jsp │ │ ├── index.jsp │ │ ├── laundrysList.jsp │ │ └── updateLaundry.jsp │ └── web.xml ├── css │ ├── bootstrap.min.css │ └── materialize.min.css ├── images │ ├── laundry.png │ ├── laundry1.jpg │ ├── washing.jpg │ └── washing.png └── js │ ├── bootstrap.bundle.min.js │ └── materialize.min.js └── src ├── com └── alms │ ├── bean │ └── LaundryBean.java │ ├── controller │ └── LaundryController.java │ ├── dao │ ├── LaundryDao.java │ └── LaundryDaoImpl.java │ ├── model │ └── Laundry.java │ ├── service │ ├── LaundryService.java │ └── LaundryServiceImpl.java │ └── twiliosms │ └── TwilioSms.java └── resources └── database.properties /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/Diagram.png -------------------------------------------------------------------------------- /Diagram.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/Diagram.ucls -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/HomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/ScreenShots/HomePage.png -------------------------------------------------------------------------------- /ScreenShots/LaundriesList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/ScreenShots/LaundriesList.png -------------------------------------------------------------------------------- /ScreenShots/LaundryForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/ScreenShots/LaundryForm.png -------------------------------------------------------------------------------- /ScreenShots/UpdateStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/ScreenShots/UpdateStatus.png -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/config/alms-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/config/alms-servlet.xml -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/activation-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/activation-1.0.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/activation-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/activation-1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/asm-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/asm-1.5.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/asm-attrs-1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/asm-attrs-1.5.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/cglib-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/cglib-2.1_3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-beanutils-1.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-beanutils-1.7.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-collections-2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-collections-2.1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-digester-1.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-digester-1.8.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-email-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-email-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-fileupload-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-fileupload-1.1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-io-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-io-1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-lang-2.5.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/dumbster-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/dumbster-1.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/ehcache-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/ehcache-1.2.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/guava-18.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/guava-18.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/hibernate-3.2.6.ga.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/hibernate-3.2.6.ga.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/hibernate-annotations-3.3.1.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/hibernate-annotations-3.3.1.GA.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/hibernate-commons-annotations-3.0.0.ga.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/hibernate-commons-annotations-3.0.0.ga.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/hibernate-entitymanager-3.3.2.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/hibernate-entitymanager-3.3.2.GA.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/hibernate-search-3.0.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/hibernate-search-3.0.0.GA.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/hibernate-validator-4.0.2.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/hibernate-validator-4.0.2.GA.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/httpclient-4.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/httpclient-4.5.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/httpcore-4.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/httpcore-4.4.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/icu4j-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/icu4j-2.6.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-annotations-2.8.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jackson-annotations-2.8.11.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-core-2.8.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jackson-core-2.8.11.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-databind-2.8.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jackson-databind-2.8.11.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/javassist-3.4.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/javassist-3.4.GA.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jaxb-api-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jaxb-api-2.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jaxb-api-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jaxb-api-2.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jaxb-impl-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jaxb-impl-2.1.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jaxen-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jaxen-1.1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jdom-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jdom-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jjwt-0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jjwt-0.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/joda-time-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/joda-time-2.5.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/log4j-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/log4j-1.2.14.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/lucene-core-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/lucene-core-2.3.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/lucene-highlighter-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/lucene-highlighter-2.0.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mail-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/mail-1.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mysql-connector-java-5.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/mysql-connector-java-5.0.5.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/persistence-api-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/persistence-api-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/quartz-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/quartz-1.5.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-api-1.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/slf4j-api-1.5.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-api-1.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/slf4j-api-1.7.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-log4j12-1.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/slf4j-log4j12-1.5.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-aop-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-aop-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-asm-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-asm-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-beans-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-beans-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-context-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-context-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-core-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-core-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-expression-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-expression-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-jdbc-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-jdbc-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-orm-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-orm-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-tx-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-tx-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-web-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-web-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-webmvc-3.0.1.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/spring-webmvc-3.0.1.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/stax-api-1.0-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/stax-api-1.0-2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/twilio-7.30.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/twilio-7.30.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/validation-api-1.0.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/validation-api-1.0.0.GA.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/xalan-2.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/xalan-2.6.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/xercesImpl-2.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/xercesImpl-2.6.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/xml-apis-1.3.02.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/xml-apis-1.3.02.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/xmlParserAPIs-2.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/xmlParserAPIs-2.6.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/xom-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/lib/xom-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/views/addLaundry.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/views/addLaundry.jsp -------------------------------------------------------------------------------- /WebContent/WEB-INF/views/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/views/index.jsp -------------------------------------------------------------------------------- /WebContent/WEB-INF/views/laundrysList.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/views/laundrysList.jsp -------------------------------------------------------------------------------- /WebContent/WEB-INF/views/updateLaundry.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/views/updateLaundry.jsp -------------------------------------------------------------------------------- /WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /WebContent/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/css/bootstrap.min.css -------------------------------------------------------------------------------- /WebContent/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/css/materialize.min.css -------------------------------------------------------------------------------- /WebContent/images/laundry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/images/laundry.png -------------------------------------------------------------------------------- /WebContent/images/laundry1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/images/laundry1.jpg -------------------------------------------------------------------------------- /WebContent/images/washing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/images/washing.jpg -------------------------------------------------------------------------------- /WebContent/images/washing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/images/washing.png -------------------------------------------------------------------------------- /WebContent/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /WebContent/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/WebContent/js/materialize.min.js -------------------------------------------------------------------------------- /src/com/alms/bean/LaundryBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/bean/LaundryBean.java -------------------------------------------------------------------------------- /src/com/alms/controller/LaundryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/controller/LaundryController.java -------------------------------------------------------------------------------- /src/com/alms/dao/LaundryDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/dao/LaundryDao.java -------------------------------------------------------------------------------- /src/com/alms/dao/LaundryDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/dao/LaundryDaoImpl.java -------------------------------------------------------------------------------- /src/com/alms/model/Laundry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/model/Laundry.java -------------------------------------------------------------------------------- /src/com/alms/service/LaundryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/service/LaundryService.java -------------------------------------------------------------------------------- /src/com/alms/service/LaundryServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/service/LaundryServiceImpl.java -------------------------------------------------------------------------------- /src/com/alms/twiliosms/TwilioSms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/com/alms/twiliosms/TwilioSms.java -------------------------------------------------------------------------------- /src/resources/database.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbvs/Laundry-Management-System/HEAD/src/resources/database.properties --------------------------------------------------------------------------------