esercizio e test usando jms e mdb

This commit is contained in:
2015-05-31 21:15:23 +02:00
parent b4e795d64a
commit 620edb5049
15 changed files with 517 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
package exercise2;
import java.io.Serializable;
/**
* Created by Giovanni on 31/05/2015.
*/
public class BookMessage implements Serializable{
public BookMessage (String in_isbn, Float in_price){
isbn = in_isbn;
price = in_price;
}
private String isbn;
private Float price;
public String getIsbn() {
return isbn;
}
public Float getPrice() {
return price;
}
}