incorporate few review comments for bael-603 (#1429)
This commit is contained in:
+5
-5
@@ -2,13 +2,13 @@ package com.baeldung.student.service;
|
||||
|
||||
import com.baeldung.student.model.Student;
|
||||
|
||||
public interface StudentService{
|
||||
public interface StudentService {
|
||||
|
||||
public String create(Student student);
|
||||
public String create(Student student);
|
||||
|
||||
public Student read(String registrationId);
|
||||
public Student read(String registrationId);
|
||||
|
||||
public Student update(Student student);
|
||||
public Student update(Student student);
|
||||
|
||||
public String delete(String registrationId);
|
||||
public String delete(String registrationId);
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
module com.baeldung.student.service{
|
||||
requires transitive com.baeldung.student.model;
|
||||
exports com.baeldung.student.service;
|
||||
requires transitive com.baeldung.student.model;
|
||||
exports com.baeldung.student.service;
|
||||
}
|
||||
Reference in New Issue
Block a user