Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
broken-petclinic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s61200
broken-petclinic
Commits
67ae72f3
Commit
67ae72f3
authored
11 years ago
by
Antoine Rey
Browse files
Options
Downloads
Patches
Plain Diff
Remove public to methods from the ClinicService
Any method you define in an interface is by definition public
parent
53abaf51
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/springframework/samples/petclinic/service/ClinicService.java
+7
-7
7 additions, 7 deletions
...ingframework/samples/petclinic/service/ClinicService.java
with
7 additions
and
7 deletions
src/main/java/org/springframework/samples/petclinic/service/ClinicService.java
+
7
−
7
View file @
67ae72f3
...
...
@@ -32,19 +32,19 @@ import org.springframework.samples.petclinic.model.Visit;
*/
public
interface
ClinicService
{
public
Collection
<
PetType
>
findPetTypes
()
throws
DataAccessException
;
Collection
<
PetType
>
findPetTypes
()
throws
DataAccessException
;
public
Owner
findOwnerById
(
int
id
)
throws
DataAccessException
;
Owner
findOwnerById
(
int
id
)
throws
DataAccessException
;
public
Pet
findPetById
(
int
id
)
throws
DataAccessException
;
Pet
findPetById
(
int
id
)
throws
DataAccessException
;
public
void
savePet
(
Pet
pet
)
throws
DataAccessException
;
void
savePet
(
Pet
pet
)
throws
DataAccessException
;
public
void
saveVisit
(
Visit
visit
)
throws
DataAccessException
;
void
saveVisit
(
Visit
visit
)
throws
DataAccessException
;
public
Collection
<
Vet
>
findVets
()
throws
DataAccessException
;
Collection
<
Vet
>
findVets
()
throws
DataAccessException
;
public
void
saveOwner
(
Owner
owner
)
throws
DataAccessException
;
void
saveOwner
(
Owner
owner
)
throws
DataAccessException
;
Collection
<
Owner
>
findOwnerByLastName
(
String
lastName
)
throws
DataAccessException
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment