diff --git a/src/main/java/nlib/col/service/RentService.java b/src/main/java/nlib/col/service/RentService.java new file mode 100644 index 00000000..c5aae3c1 --- /dev/null +++ b/src/main/java/nlib/col/service/RentService.java @@ -0,0 +1,41 @@ + +package nlib.col.service; + +import iams.nlib.dataapi.service.DataApiReqVO; +import iams.nlib.dataapi.service.DataApiResVO; + +/** + * Description : + * @author + * @since + * @version + * @see + * + *
+ * << Modification Information >> + * + * Date Modifier Expression + * ------- -------- --------------------------- + * + * + * + *+ */ +public interface RentService +{ + public DataApiResVO listRentItems(DataApiReqVO reqVO); + + public DataApiResVO postponeReturnDate(DataApiReqVO reqVO); + + public DataApiResVO listCanceledRentItems(DataApiReqVO reqVO); + + public DataApiResVO listReservations(DataApiReqVO reqVO); + + public DataApiResVO cancelReservations(DataApiReqVO reqVO); + + public DataApiResVO listRequestsForViewingItem(DataApiReqVO reqVO); + + public DataApiResVO selectRequestInfoForViewingItem(DataApiReqVO reqVO); + + +} \ No newline at end of file diff --git a/src/main/java/nlib/col/service/impl/RentDAO.java b/src/main/java/nlib/col/service/impl/RentDAO.java new file mode 100644 index 00000000..2f5db7bb --- /dev/null +++ b/src/main/java/nlib/col/service/impl/RentDAO.java @@ -0,0 +1,55 @@ + +package nlib.col.service.impl; + +import iams.nlib.dataapi.service.DataApiReqVO; +import iams.nlib.dataapi.service.DataApiResVO; + +/** + * Description : + * @author + * @since + * @version + * @see + * + *
+ * << Modification Information >> + * + * Date Modifier Expression + * ------- -------- --------------------------- + * + * + * + *+ */ +public class RentDAO +{ + public DataApiResVO listRentItems(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO postponeReturnDate(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO listCanceledRentItems(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO listReservations(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO cancelReservations(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO listRequestsForViewingItem(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO selectRequestInfoForViewingItem(DataApiReqVO reqVO) { + return null; + } + + +} \ No newline at end of file diff --git a/src/main/java/nlib/col/service/impl/RentServiceImpl.java b/src/main/java/nlib/col/service/impl/RentServiceImpl.java new file mode 100644 index 00000000..e576eef4 --- /dev/null +++ b/src/main/java/nlib/col/service/impl/RentServiceImpl.java @@ -0,0 +1,59 @@ + +package nlib.col.service.impl; + +import iams.nlib.dataapi.service.DataApiReqVO; +import iams.nlib.dataapi.service.DataApiResVO; +import nlib.col.service.RentService; + +/** + * Description : + * @author + * @since + * @version + * @see + * + *
+ * << Modification Information >> + * + * Date Modifier Expression + * ------- -------- --------------------------- + * + * + * + *+ */ +public class RentServiceImpl implements RentService +{ + private RentDAO rentDAO; + + + public DataApiResVO listRentItems(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO postponeReturnDate(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO listCanceledRentItems(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO listReservations(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO cancelReservations(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO listRequestsForViewingItem(DataApiReqVO reqVO) { + return null; + } + + public DataApiResVO selectRequestInfoForViewingItem(DataApiReqVO reqVO) { + return null; + } + + +} \ No newline at end of file diff --git a/src/main/java/nlib/col/web/RentController.java b/src/main/java/nlib/col/web/RentController.java new file mode 100644 index 00000000..0f9c32b6 --- /dev/null +++ b/src/main/java/nlib/col/web/RentController.java @@ -0,0 +1,61 @@ + +package nlib.col.web; + +import javax.servlet.http.HttpServletRequest; + +import org.springframework.ui.ModelMap; + +import nlib.col.service.RentService; + +/** + * Description : + * @author + * @since + * @version + * @see + * + *
+ * << Modification Information >> + * + * Date Modifier Expression + * ------- -------- --------------------------- + * + * + * + *+ */ +public class RentController +{ + private RentService rentService; + + + public ModelMap listRentItems(HttpServletRequest req) { + return null; + } + + public ModelMap postponeReturnDate(HttpServletRequest req) { + return null; + } + + public ModelMap listCanceledRentItems(HttpServletRequest req) { + return null; + } + + public ModelMap listReservations(HttpServletRequest req) { + return null; + } + + public ModelMap cancelReservations(HttpServletRequest req) { + return null; + } + + public ModelMap listRequestsForViewingItem(HttpServletRequest req) { + return null; + } + + public ModelMap selectRequestInfoForViewingItem(HttpServletRequest req) { + return null; + } + + +} \ No newline at end of file