1.0
This commit is contained in:
10
旧的java项目/itcast/server/service/UserServiceFactory.java
Normal file
10
旧的java项目/itcast/server/service/UserServiceFactory.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package cn.itcast.server.service;
|
||||
|
||||
public abstract class UserServiceFactory {
|
||||
|
||||
private static UserService userService = new UserServiceMemoryImpl();
|
||||
|
||||
public static UserService getUserService() {
|
||||
return userService;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user