Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
java_weekendowa_20221008
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patryk Czarnik
java_weekendowa_20221008
Commits
1418b646
Commit
1418b646
authored
Dec 10, 2022
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dziwne zmiany w klasie Product
parent
ea657cee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
Product.java
PC33-SoapSerwer/src/main/java/sklep/model/Product.java
+11
-3
Sklep.java
PC33-SoapSerwer/src/main/java/sklep/soap/Sklep.java
+1
-1
No files found.
PC33-SoapSerwer/src/main/java/sklep/model/Product.java
View file @
1418b646
...
...
@@ -30,7 +30,7 @@ public class Product {
}
public
String
getProductName
()
{
return
productName
;
return
productName
.
toUpperCase
()
;
}
public
void
setProductName
(
String
productName
)
{
...
...
@@ -41,8 +41,16 @@ public class Product {
return
price
;
}
public
void
setPrice
(
BigDecimal
price
)
{
this
.
price
=
price
;
// public void setPrice(BigDecimal price) {
// this.price = price;
// }
public
String
getNiespodzianka
()
{
return
"a kuku"
;
}
public
void
setNiespodzianka
(
String
x
)
{
}
public
BigDecimal
getVat
()
{
...
...
PC33-SoapSerwer/src/main/java/sklep/soap/Sklep.java
View file @
1418b646
...
...
@@ -22,7 +22,7 @@ import sklep.photo.PhotoUtil;
public
class
Sklep
{
@WebResult
(
name
=
"product"
)
public
List
<
Product
>
readAllProducts
()
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
ProductDAO
productDAO
=
db
.
productDAO
();
return
productDAO
.
readAll
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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