Compare commits
13 Commits
Author | SHA1 | Date |
---|---|---|
selin | e0b7ec925e | |
selin | 87b679194f | |
selin | 484dac77cf | |
selin | a1ad89c190 | |
selin | 2ca8e7774a | |
selin | 2458bbb2bb | |
selin | 62a60dace3 | |
selin | 9a51632804 | |
selin | daf19ccfcc | |
selin | 8a8ac015ac | |
selin | 96529f54e8 | |
selin | f6afcf5a33 | |
selin | 84aaa4f305 |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Bank-System</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -6,5 +6,6 @@
|
|||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,51 @@
|
|||
package de.hs_mannheim.informatik.bank;
|
||||
|
||||
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||
|
||||
class JUnitBank {
|
||||
|
||||
|
||||
@Test
|
||||
public void einzahlenBanksystem() {
|
||||
Banksystem bs = new Banksystem ("hallo");
|
||||
bs.kontoAnlegen("typ");
|
||||
assertEquals(0L, bs.getKontostand(1000));
|
||||
bs.setKontostand(1000, 20);
|
||||
assertEquals(20L, bs.getKontostand(1000));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void einzahlenKonto() {
|
||||
Konto konto = new Konto("Selin");
|
||||
assertEquals(0, konto.getKontostand() );
|
||||
konto.setKontostand(20);
|
||||
assertEquals(20, konto.getKontostand()); }
|
||||
|
||||
@Test
|
||||
public void auszahlenBanksystem() {
|
||||
Banksystem bs = new Banksystem ("hallo");
|
||||
bs.kontoAnlegen("typ");
|
||||
assertEquals(0L, bs.getKontostand(1000));
|
||||
bs.setKontostand(1000, 10);
|
||||
assertEquals(10L, bs.getKontostand(1000)); }
|
||||
|
||||
@Test
|
||||
public void auszahlenKonto() {
|
||||
Konto konto = new Konto("Selin");
|
||||
assertEquals(0,0);
|
||||
konto.setKontostand(10);
|
||||
assertEquals(10,10);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,13 +1,20 @@
|
|||
package de.hs_mannheim.informatik.bank;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||
import de.hs_mannheim.informatik.bank.ui.UI;
|
||||
import persistence.SpeichernLaden;
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
||||
public static void main(String[] args) throws ClassNotFoundException, IOException {
|
||||
Banksystem bs = new Banksystem("Sparkasse Mannheim");
|
||||
UI ui = new UI(bs);
|
||||
// Konto test = new Konto("Selin");
|
||||
SpeichernLaden.speichern(bs.getKontenliste());
|
||||
SpeichernLaden.laden();
|
||||
}
|
||||
|
||||
//Test
|
||||
}
|
|
@ -19,8 +19,30 @@ public class Bank {
|
|||
return name;
|
||||
}
|
||||
|
||||
public Konto getKonto(int Kontonummer) {
|
||||
return konten.get(Kontonummer);
|
||||
}
|
||||
|
||||
public Collection<Konto> getKontenliste() {
|
||||
return konten.values();
|
||||
}
|
||||
|
||||
public HashMap<Integer, Konto> getKonten() {
|
||||
return konten;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void addKontostand(Integer nummer, long einzahlung) {
|
||||
long neuerstand = (konten.get(nummer).getKontostand() + einzahlung);
|
||||
konten.get(nummer).setKontostand(neuerstand); }
|
||||
|
||||
public void addKontoauszahlung(Integer nummer, long auszahlung) {
|
||||
long neuerstand = (konten.get(nummer).getKontostand() + auszahlung);
|
||||
konten.get(nummer).setKontostand(neuerstand); }
|
||||
|
||||
public HashMap<Integer, Konto> getKontoauszug() {
|
||||
return konten;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,15 +1,28 @@
|
|||
package de.hs_mannheim.informatik.bank.domain;
|
||||
|
||||
public class Konto {
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
|
||||
public class Konto implements Serializable{
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private static int kontozähler = 0;
|
||||
|
||||
private int nummer;
|
||||
private long stand = 0;
|
||||
private String inhaber;
|
||||
private ArrayList<Kontobewegung> kontobewegungen = new ArrayList<>();
|
||||
private Date datum;
|
||||
|
||||
|
||||
public Konto(String inhaber) {
|
||||
nummer = 1000 + kontozähler++;
|
||||
this.inhaber = inhaber;
|
||||
datum = new Date();
|
||||
}
|
||||
|
||||
public int getKontonummer() {
|
||||
|
@ -18,7 +31,34 @@ public class Konto {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Konto [nummer=" + nummer + ", inhaber=" + inhaber + "]";
|
||||
return "Konto [nummer=" + nummer + ", inhaber=" + inhaber + ", kontostand=" + stand + "]";
|
||||
}
|
||||
|
||||
public void setKontostand(long betrag) {
|
||||
this.stand = betrag;
|
||||
Kontobewegung bewegung = new Kontobewegung(datum, this.inhaber, betrag, "Einzahlung");
|
||||
this.kontobewegungen.add(bewegung);
|
||||
|
||||
}
|
||||
|
||||
public boolean Kontoauszahlung(long betrag) {
|
||||
if(betrag > this.stand) {
|
||||
return false;
|
||||
} else {
|
||||
this.stand = this.stand - betrag;
|
||||
Kontobewegung bewegung = new Kontobewegung(datum, this.inhaber, betrag, "Auszahlung");
|
||||
this.kontobewegungen.add(bewegung);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public ArrayList<Kontobewegung> getKontoauszug() {
|
||||
return this.kontobewegungen;
|
||||
}
|
||||
|
||||
public long getKontostand() {
|
||||
return stand;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
package de.hs_mannheim.informatik.bank.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class Kontobewegung {
|
||||
|
||||
private Date datum;
|
||||
private String inhaber;
|
||||
private long betrag;
|
||||
private String bewegung;
|
||||
|
||||
public Kontobewegung(Date datum, String inhaber, long betrag, String bewegung) {
|
||||
this.datum = datum;
|
||||
this.inhaber = inhaber;
|
||||
this.betrag = betrag;
|
||||
this.bewegung = bewegung;
|
||||
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "datum = " + this.datum + "inhaber = " + this.inhaber + " bewegung = " + this.bewegung
|
||||
+ "betrag = " + this.betrag;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -1,9 +1,12 @@
|
|||
package de.hs_mannheim.informatik.bank.facade;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.domain.Bank;
|
||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||
import de.hs_mannheim.informatik.bank.domain.Kontobewegung;
|
||||
|
||||
public class Banksystem {
|
||||
private Bank bank;
|
||||
|
@ -34,4 +37,40 @@ public class Banksystem {
|
|||
public String getBankname() {
|
||||
return bank.getName();
|
||||
}
|
||||
}
|
||||
|
||||
public void setKontostand(Integer nummer, long einzahlung) {
|
||||
bank.addKontostand(nummer, einzahlung); }
|
||||
|
||||
public void setKontostand1(Integer nummer, long auszahlung) {
|
||||
bank.addKontostand(nummer, auszahlung);
|
||||
}
|
||||
|
||||
public long getKontostand(Integer nummer) {
|
||||
return getKonto(nummer).getKontostand();
|
||||
}
|
||||
|
||||
public Konto getKonto(Integer nummer) {
|
||||
return bank.getKonten().get(nummer);
|
||||
|
||||
}
|
||||
|
||||
public void Kontoauszahlung(int nummer, long betrag) {
|
||||
Konto konto = bank.getKonto(nummer);
|
||||
konto.Kontoauszahlung(betrag);
|
||||
}
|
||||
|
||||
public ArrayList<Kontobewegung> getKontoauszug( int kontonummer) {
|
||||
Konto konto = bank.getKonto(kontonummer);
|
||||
return konto.getKontoauszug();
|
||||
|
||||
}
|
||||
|
||||
|
||||
public Bank getBank() {
|
||||
return this.bank;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -2,7 +2,9 @@ package de.hs_mannheim.informatik.bank.ui;
|
|||
|
||||
import java.util.Scanner;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||
import persistence.SpeichernLaden;
|
||||
|
||||
public class UI {
|
||||
private Banksystem bs;
|
||||
|
@ -21,8 +23,12 @@ public class UI {
|
|||
System.out.println();
|
||||
System.out.println("--------");
|
||||
System.out.println("Hauptmenü");
|
||||
System.out.println("1 -> Konten anzeigen");
|
||||
System.out.println("2 -> Konto anlegen");
|
||||
System.out.println("1 -> Konto anlegen");
|
||||
System.out.println("2 -> Konto anzeigen");
|
||||
System.out.println("3 -> Kontostand erhöhen");
|
||||
System.out.println("4 -> Kontostand Geld auszahlen");
|
||||
System.out.println("5 -> Kontostand eines einzelnen anzeigen");
|
||||
System.out.println("6 -> Konto einen Kontoauszug anzeigen");
|
||||
System.out.println("9 -> Beenden");
|
||||
System.out.println();
|
||||
|
||||
|
@ -31,8 +37,12 @@ public class UI {
|
|||
System.out.println();
|
||||
|
||||
switch(input) {
|
||||
case 1: kontenAnzeigen(); break;
|
||||
case 2: kontoAnlegen(); break;
|
||||
case 2: kontenAnzeigen(); break;
|
||||
case 1: kontoAnlegen(); break;
|
||||
case 3: setKontostand(); break;
|
||||
case 4: geldAuszahlen(); break;
|
||||
case 5: getKontostand(); break;
|
||||
case 6: getKontoauszug(); break;
|
||||
case 9: break mainloop;
|
||||
}
|
||||
}
|
||||
|
@ -41,6 +51,27 @@ public class UI {
|
|||
|
||||
} // hauptmenü
|
||||
|
||||
private void geldAuszahlen() {
|
||||
System.out.println("Bitte die Kontonummer eingeben:");
|
||||
Integer kontonummer = Integer.valueOf(sc.nextLine());
|
||||
|
||||
System.out.println("Bitte den Betrag der Auzahlung eingeben");
|
||||
long auszahlung = Long.parseLong(sc.nextLine());
|
||||
bs.Kontoauszahlung(kontonummer, auszahlung);
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void getKontoauszug() {
|
||||
System.out.println("Bitte die Kontonummer eingeben:");
|
||||
Integer kontonummer = Integer.valueOf(sc.nextLine());
|
||||
|
||||
|
||||
|
||||
System.out.println(bs.getKontoauszug(kontonummer));
|
||||
|
||||
}
|
||||
|
||||
private void kontenAnzeigen() {
|
||||
String[] konten = bs.getKontenliste();
|
||||
if (konten.length > 0) {
|
||||
|
@ -61,4 +92,41 @@ public class UI {
|
|||
System.out.println("Konto mit der Nummer " + kontonummer + " neu angelegt.");
|
||||
}
|
||||
|
||||
}
|
||||
private void setKontostand() {
|
||||
if(bs.getKontenliste().length == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
System.out.println("Bitte die Kontonummer eingeben:");
|
||||
|
||||
Integer nummer = Integer.valueOf(sc.nextLine());
|
||||
|
||||
System.out.println("Bitte den Betrag der Einzahlung eingeben:");
|
||||
long einzahlung = Long.parseLong(sc.nextLine());
|
||||
|
||||
|
||||
bs.setKontostand(nummer, einzahlung);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
private void getKontostand() {
|
||||
System.out.println("Bitte geben Sie Ihre Kontonummer ein");
|
||||
Integer nummer = Integer.valueOf(sc.nextLine());
|
||||
|
||||
System.out.println("Der Kontostand mit Nummer: " + nummer + " ist " + bs.getKontostand(nummer));
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* private void beenden() {
|
||||
for(Konto konto : bs.getBank().getKontoauszug().values()) {
|
||||
SpeichernLaden.speichern(konto);
|
||||
}
|
||||
} */
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
package persistence;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectInputStream;
|
||||
import java.io.ObjectOutputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.OutputStreamWriter;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||
|
||||
public class SpeichernLaden {
|
||||
|
||||
public static void speichern(String[] konten) {
|
||||
|
||||
try {
|
||||
OutputStream out = new FileOutputStream("Kontos.ser");
|
||||
ObjectOutputStream oos = new ObjectOutputStream(out);
|
||||
oos.writeObject(konten);
|
||||
System.out.println("Gespeichert!");
|
||||
out.close();
|
||||
oos.close();
|
||||
} catch (FileNotFoundException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
} catch (IOException e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
}
|
||||
public static void laden() throws IOException, ClassNotFoundException {
|
||||
ObjectInputStream ois = new ObjectInputStream(new FileInputStream("Kontos.ser"));
|
||||
System.out.println( "Ausgabe: " +((String[])ois.readObject())[0] );
|
||||
ois.close();
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
Subproject commit ba349af6c3b7c059ce6dc20ab17fc179a811e1eb
|
Loading…
Reference in New Issue