code for Introduction to Project Jigsaw BAEL-603 (#1421)

This commit is contained in:
Mohamed Sanaulla
2017-03-17 10:36:27 +03:00
committed by maibin
parent a794db3183
commit fbd5d1d2a8
15 changed files with 97 additions and 0 deletions
@@ -0,0 +1,14 @@
package com.baeldung.student.service;
import com.baeldung.student.model.Student;
public interface StudentService{
public String create(Student student);
public Student read(String registrationId);
public Student update(Student student);
public String delete(String registrationId);
}
@@ -0,0 +1,4 @@
module com.baeldung.student.service{
requires transitive com.baeldung.student.model;
exports com.baeldung.student.service;
}