Spring MVC Example
Sign in or create your account
Project List ▾
Spring MVC Example
test
Help
Project Home
Downloads
Documentation
Issues
Source
Code Review
Source Tree
|
Change Log
|
How To Get The Code
Spring MVC Example Git Source Tree
Root
/
src
/
main
/
java
/
info
/
ahlberg
/
spring
/
service
/
ContactService.java
1
package info.ahlberg.spring.service;
2
3
import java.util.List;
4
5
import info.ahlberg.spring.domain.Contact;
6
7
public interface ContactService {
8
9
List<Contact> findAll();
10
11
void save(Contact contact);
12
13
}
14
Download this file
Branches
master