Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
digicom5
api
Commits
7baac79d
Commit
7baac79d
authored
Jan 26, 2016
by
David Koch
Browse files
Renamed PaymentNotification.invoiceID to purpose!
parent
9bcaccb0
Changes
11
Hide whitespace changes
Inline
Side-by-side
.classpath
View file @
7baac79d
...
...
@@ -30,6 +30,7 @@
<classpathentry
kind=
"con"
path=
"org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"
>
<attributes>
<attribute
name=
"maven.pomderived"
value=
"true"
/>
<attribute
name=
"org.eclipse.jst.component.nondependency"
value=
""
/>
</attributes>
</classpathentry>
<classpathentry
kind=
"output"
path=
"target/classes"
/>
...
...
.project
View file @
7baac79d
...
...
@@ -5,6 +5,11 @@
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>
org.eclipse.wst.common.project.facet.core.builder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
org.eclipse.jdt.core.javabuilder
</name>
<arguments>
...
...
@@ -15,9 +20,17 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
org.eclipse.wst.validation.validationbuilder
</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>
org.eclipse.jem.workbench.JavaEMFNature
</nature>
<nature>
org.eclipse.wst.common.modulecore.ModuleCoreNature
</nature>
<nature>
org.eclipse.jdt.core.javanature
</nature>
<nature>
org.eclipse.m2e.core.maven2Nature
</nature>
<nature>
org.eclipse.wst.common.project.facet.core.nature
</nature>
</natures>
</projectDescription>
.settings/org.eclipse.jdt.core.prefs
View file @
7baac79d
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.7
.settings/org.eclipse.wst.common.component
0 → 100644
View file @
7baac79d
<?xml version="1.0" encoding="UTF-8"?>
<project-modules
id=
"moduleCoreId"
project-version=
"1.5.0"
>
<wb-module
deploy-name=
"api"
>
<wb-resource
deploy-path=
"/"
source-path=
"/src/main/java"
/>
<wb-resource
deploy-path=
"/"
source-path=
"/src/main/resources"
/>
</wb-module>
</project-modules>
.settings/org.eclipse.wst.common.project.facet.core.xml
0 → 100644
View file @
7baac79d
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<installed
facet=
"java"
version=
"1.7"
/>
<installed
facet=
"jst.utility"
version=
"1.0"
/>
</faceted-project>
src/main/java/de/uniko/digicom/carsandco/messages/PaymentNotification.java
View file @
7baac79d
...
...
@@ -18,9 +18,9 @@ public class PaymentNotification {
private
String
transactionKey
;
/**
* The
ID
of the invoice that was received from Cars and Co and is now payed.
* The
purpose
of the invoice that was received from Cars and Co and is now payed.
*/
private
int
invoiceID
;
private
String
purpose
;
/**
* The date and time when they payment was performed
...
...
@@ -37,14 +37,6 @@ public class PaymentNotification {
this
.
transactionKey
=
transactionKey
;
}
public
int
getInvoiceID
()
{
return
invoiceID
;
}
public
void
setInvoiceID
(
int
invoiceID
)
{
this
.
invoiceID
=
invoiceID
;
}
public
Date
getDateOfPayment
()
{
return
dateOfPayment
;
}
...
...
@@ -52,4 +44,12 @@ public class PaymentNotification {
public
void
setDateOfPayment
(
Date
dateOfPayment
)
{
this
.
dateOfPayment
=
dateOfPayment
;
}
public
String
getPurpose
()
{
return
purpose
;
}
public
void
setPurpose
(
String
purpose
)
{
this
.
purpose
=
purpose
;
}
}
target/classes/META-INF/MANIFEST.MF
View file @
7baac79d
Manifest-Version: 1.0
Built-By: David
Build-Jdk: 1.8.0_
66
Build-Jdk: 1.8.0_
71
Created-By: Maven Integration for Eclipse
target/classes/META-INF/maven/de.uniko.digicom.carsandco/carsandco-api/pom.properties
View file @
7baac79d
#Generated by Maven Integration for Eclipse
#
Fri
Jan 2
2 01:26:36
CET 2016
#
Tue
Jan 2
6 15:34:25
CET 2016
version
=
0.0.1-SNAPSHOT
groupId
=
de.uniko.digicom.carsandco
m2e.projectName
=
api
...
...
target/classes/de/uniko/digicom/carsandco/client/CarsandcoApiClient.class
View file @
7baac79d
No preview for this file type
target/classes/de/uniko/digicom/carsandco/messages/PaymentNotification.class
View file @
7baac79d
No preview for this file type
target/classes/de/uniko/digicom/carsandco/messages/RepairContract.class
View file @
7baac79d
No preview for this file type
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment