Skip to content

Commit 8a7d6f8

Browse files
First commit for TravelAware Api
0 parents  commit 8a7d6f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2324
-0
lines changed

TAApi/.classpath

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry including="**/*.java" kind="src" path="src/main/resources"/>
10+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
11+
<attributes>
12+
<attribute name="optional" value="true"/>
13+
<attribute name="maven.pomderived" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/resources"/>
17+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
18+
<attributes>
19+
<attribute name="maven.pomderived" value="true"/>
20+
</attributes>
21+
</classpathentry>
22+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
23+
<attributes>
24+
<attribute name="maven.pomderived" value="true"/>
25+
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
26+
</attributes>
27+
</classpathentry>
28+
<classpathentry kind="lib" path="C:/Users/Rupendra Sharma/.m2/repository/org/springframework/spring-web/4.3.3.RELEASE/spring-web-4.3.3.RELEASE.jar">
29+
<attributes>
30+
<attribute name="maven.pomderived" value="true"/>
31+
<attribute name="maven.groupId" value="org.springframework"/>
32+
<attribute name="maven.artifactId" value="spring-web"/>
33+
<attribute name="maven.version" value="4.3.3.RELEASE"/>
34+
<attribute name="maven.scope" value="compile"/>
35+
</attributes>
36+
</classpathentry>
37+
<classpathentry kind="lib" path="C:/Users/Rupendra Sharma/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.1-api/1.0.0.Final/hibernate-jpa-2.1-api-1.0.0.Final.jar">
38+
<attributes>
39+
<attribute name="maven.pomderived" value="true"/>
40+
<attribute name="maven.groupId" value="org.hibernate.javax.persistence"/>
41+
<attribute name="maven.artifactId" value="hibernate-jpa-2.1-api"/>
42+
<attribute name="maven.version" value="1.0.0.Final"/>
43+
<attribute name="maven.scope" value="compile"/>
44+
</attributes>
45+
</classpathentry>
46+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
47+
<classpathentry kind="lib" path="C:/Users/Rupendra Sharma/.m2/repository/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar">
48+
<attributes>
49+
<attribute name="maven.pomderived" value="true"/>
50+
<attribute name="maven.groupId" value="javax.validation"/>
51+
<attribute name="maven.artifactId" value="validation-api"/>
52+
<attribute name="maven.version" value="1.1.0.Final"/>
53+
<attribute name="maven.scope" value="compile"/>
54+
</attributes>
55+
</classpathentry>
56+
<classpathentry kind="lib" path="C:/Users/Rupendra Sharma/.m2/repository/org/hibernate/hibernate-core/4.3.6.Final/hibernate-core-4.3.6.Final.jar">
57+
<attributes>
58+
<attribute name="maven.pomderived" value="true"/>
59+
<attribute name="maven.groupId" value="org.hibernate"/>
60+
<attribute name="maven.artifactId" value="hibernate-core"/>
61+
<attribute name="maven.version" value="4.3.6.Final"/>
62+
<attribute name="maven.scope" value="compile"/>
63+
</attributes>
64+
</classpathentry>
65+
<classpathentry kind="output" path="target/classes"/>
66+
</classpath>

TAApi/.project

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>TAApi</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.springframework.ide.eclipse.core.springbuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.wst.validation.validationbuilder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
<buildCommand>
34+
<name>org.eclipse.m2e.core.maven2Builder</name>
35+
<arguments>
36+
</arguments>
37+
</buildCommand>
38+
</buildSpec>
39+
<natures>
40+
<nature>org.springframework.ide.eclipse.core.springnature</nature>
41+
<nature>org.eclipse.jdt.core.javanature</nature>
42+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
43+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
44+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
45+
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
46+
</natures>
47+
</projectDescription>
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.8
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
12+
org.eclipse.jdt.core.compiler.source=1.8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project-modules id="moduleCoreId" project-version="1.5.0">
3+
<wb-module deploy-name="TAApi">
4+
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
5+
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
6+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
7+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
8+
<property name="java-output-path" value="target/classes"/>
9+
<property name="context-root" value="api"/>
10+
</wb-module>
11+
</project-modules>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<fixed facet="jst.web"/>
4+
<fixed facet="jst.java"/>
5+
<installed facet="jst.web" version="2.5"/>
6+
<installed facet="jst.java" version="1.6"/>
7+
</faceted-project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Fri Jun 06 17:00:12 BST 2008
2+
DELEGATES_PREFERENCE=delegateValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator\=org.eclipse.wst.wsdl.validation.internal.eclipse.Validator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator\=org.eclipse.wst.xsd.core.internal.validation.eclipse.Validator;
3+
USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator;org.eclipse.jst.jsf.validation.internal.JSPSemanticsValidator;org.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;org.eclipse.wst.common.componentcore.internal.ModuleCoreValidator;org.eclipse.jst.jsf.validation.internal.appconfig.AppConfigValidator;org.eclipse.jst.jsp.core.internal.validation.JSPBatchValidator;org.eclipse.wst.html.internal.validation.HTMLValidator;org.eclipse.jst.jsp.core.internal.validation.JSPContentValidator;org.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;org.eclipse.wst.wsi.ui.internal.WSIMessageValidator;
4+
USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator;org.eclipse.wst.xsd.core.internal.validation.eclipse.XSDDelegatingValidator;org.eclipse.jst.jsf.validation.internal.JSPSemanticsValidator;org.eclipse.wst.dtd.core.internal.validation.eclipse.Validator;org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;org.eclipse.wst.common.componentcore.internal.ModuleCoreValidator;org.eclipse.jst.jsf.validation.internal.appconfig.AppConfigValidator;org.eclipse.jst.jsp.core.internal.validation.JSPBatchValidator;org.eclipse.wst.html.internal.validation.HTMLValidator;org.eclipse.jst.jsp.core.internal.validation.JSPContentValidator;org.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator;org.eclipse.wst.wsi.ui.internal.WSIMessageValidator;
5+
USER_PREFERENCE=overrideGlobalPreferencesfalse
6+
eclipse.preferences.version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
#Mon Oct 18 12:37:52 EDT 2010
2+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.osgi.org/xmlns/blueprint/v1.0.0=
3+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/aop=
4+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/batch=
5+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/beans=
6+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/context=
7+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/faces=
8+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/flex=
9+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration=
10+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/file=
11+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/http=
12+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/httpinvoker=
13+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/ip=
14+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/jdbc=
15+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/jms=
16+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/jmx=
17+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/mail=
18+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/rmi=
19+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/security=
20+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/stream=
21+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/ws=
22+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/integration/xml=
23+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/jdbc=
24+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/jee=
25+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/jms=
26+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/lang=
27+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/mvc=
28+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/osgi=
29+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/osgi-compendium=
30+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/oxm=
31+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/p=
32+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/security=
33+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/task=
34+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/tx=
35+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/util=
36+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/web-services=
37+
//org.springframework.ide.eclipse.beans.core.default.version.http\://www.springframework.org/schema/webflow-config=
38+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.osgi.org/xmlns/blueprint/v1.0.0=bp
39+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/aop=aop
40+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/batch=batch
41+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/beans=beans
42+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/context=context
43+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/faces=faces
44+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/flex=flex
45+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration=int
46+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/file=int-file
47+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/http=int-http
48+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/httpinvoker=int-httpinvoker
49+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/ip=int-ip
50+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/jdbc=int-jdbc
51+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/jms=int-jms
52+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/jmx=int-jmx
53+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/mail=int-mail
54+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/rmi=int-rmi
55+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/security=int-security
56+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/stream=int-stream
57+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/ws=int-ws
58+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/integration/xml=int-xml
59+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/jdbc=jdbc
60+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/jee=jee
61+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/jms=jms
62+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/lang=lang
63+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/mvc=mvc
64+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/osgi=osgi
65+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/osgi-compendium=osgix
66+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/oxm=oxm
67+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/p=p
68+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/security=sec
69+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/task=task
70+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/tx=tx
71+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/util=util
72+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/web-services=ws
73+
//org.springframework.ide.eclipse.beans.core.prefix.http\://www.springframework.org/schema/webflow-config=flow
74+
eclipse.preferences.version=1
75+
org.springframework.ide.eclipse.beans.core.default.version.check.classpath=true
76+
org.springframework.ide.eclipse.beans.core.enable.project.preferences=false
77+
org.springframework.ide.eclipse.beans.core.ignoreMissingNamespaceHandler=false
78+
org.springframework.ide.eclipse.beans.core.loadNamespaceHandlerFromClasspath=false

0 commit comments

Comments
 (0)