Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard
 
7bf57b2f0f2b3cf0ae9489a8204918762e64648e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package domain;

import java.io.Serializable;
import java.util.Date;

@SuppressWarnings("serial")
public class Booking implements Serializable {
	private int bookingNumber;
	private boolean isPaid;
	private Date bookingDate;
	private Client client;
	private Offer offer;
	private boolean isAccepted;
	
	
	public Booking() {
	}

	public Booking(int bN , Offer offer,Client client) {
		
		this.bookingNumber = bN;
		this.offer = offer;
		this.client=client;
		//Booking date is assigned to actual date
		this.bookingDate= new java.util.Date(System.currentTimeMillis());
		this.isPaid=false;
		this.isAccepted=false;
	}
	
	public void imprimete(){
		System.out.println(bookingNumber);
		System.out.println(isPaid);
		System.out.println(bookingDate);
		System.out.println(client.toString());
		System.out.println(offer);		
		System.out.println(this.isAccepted);	
	}

	public int getBookNumber() {
		return this.bookingNumber;
	}

	public void setOffer(Offer offer) {
		this.offer = offer;
	}

	public Offer getOffer() {
		return this.offer;
	}

	public float getPrice() {
		return this.offer.getPrice();
	}
	
	public void setBookDate(Date bookDate) {
		this.bookingDate = bookDate;
	}

	public Date getBookDate() {
		return this.bookingDate;
	}
	
	public void paid() {
		this.isPaid = true;
	}

	public void notPaid() {
		this.isPaid=false;
	}

	public boolean isPaid() {
		return isPaid;
	}
	
	public boolean isAccepted(){
		return this.isAccepted;
	}

	public Client getClient() {
		return client;
	}

	public void setClient(Client client) {
		this.client = client;
	}
	
}

Commits for RRRRHHHH_CoderuralHouses/src/domain/Booking.java

Diff revisions: vs.
Revision Author Commited Message
7bf57b ... Diff Diff camjan Sun 17 May, 2015 11:59:22 +0000

Possibility of registering new owners added

0f75b2 ... Diff Diff camjan Sat 16 May, 2015 14:34:49 +0000

Username is saved hashed and password hashed and salted

e2ae30 ... Diff Diff Eneko Pinzolas Murua Tue 14 Apr, 2015 15:07:35 +0000

imports leaned

06a849 ... Diff Diff pinene picture pinene Sat 07 Mar, 2015 13:48:38 +0000

unification with the actual initial project. Some things are new now, but there has been a feature that has been deleted.\n The feature of opening and closing the database per each query/store has been deleted by now

e0d74d ... unknown Thu 26 Feb, 2015 19:24:02 +0000

Given code uploaded