# Conflicts: # src/core/process/Process.javawlf
parent
6d20631b20
commit
ac773da1d5
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="JsonSchemaMappingsProjectConfiguration">
|
||||
<state>
|
||||
<map>
|
||||
<entry key="bukkit-plugin">
|
||||
<value>
|
||||
<SchemaInfo>
|
||||
<option name="name" value="bukkit-plugin" />
|
||||
<option name="relativePathToSchema" value="http://json.schemastore.org/bukkit-plugin" />
|
||||
<option name="applicationDefined" value="true" />
|
||||
<option name="patterns">
|
||||
<list>
|
||||
<Item>
|
||||
<option name="path" value="src/core/user/student.json" />
|
||||
</Item>
|
||||
</list>
|
||||
</option>
|
||||
</SchemaInfo>
|
||||
</value>
|
||||
</entry>
|
||||
</map>
|
||||
</state>
|
||||
</component>
|
||||
</project>
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_10" default="false" project-jdk-name="10" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_10" default="false" project-jdk-name="11" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
@ -1,7 +0,0 @@
|
||||
package core.process;
|
||||
|
||||
public class AuxiliaryProcess extends Process {
|
||||
public AuxiliaryProcess(String permission, String operationName, String processOptions, String info) throws Exception {
|
||||
super(permission, operationName, processOptions, info);
|
||||
}
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
//package core.process;
|
||||
////
|
||||
////import java.util.ArrayList;
|
||||
////import java.util.List;
|
||||
////
|
||||
////public class Cls_TeacherSelectStudent extends Process {
|
||||
//// List<String> list;
|
||||
////
|
||||
//// public Cls_TeacherSelectStudent clone(){
|
||||
//// Cls_TeacherSelectStudent tst = new Cls_TeacherSelectStudent();
|
||||
//// tst.setInfo( this.getInfo());
|
||||
//// List<String> list = new ArrayList<>();
|
||||
//// for(String s:this.list){
|
||||
//// list.add(new String(s));
|
||||
//// }
|
||||
//// }
|
||||
////}
|
@ -1,8 +0,0 @@
|
||||
package core.process;
|
||||
|
||||
public class LastProcess extends Process{
|
||||
|
||||
public LastProcess(String permission, String operationName, String processOptions, String info) throws Exception {
|
||||
super(permission, operationName, processOptions, info);
|
||||
}
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
package core.process;
|
||||
|
||||
|
||||
|
||||
public class TemporaryProcess extends Process {
|
||||
public TemporaryProcess(String permission, String operationName, String processOptions, String info) throws Exception {
|
||||
super(permission, operationName, processOptions, info);
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package servlet.account;
|
||||
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.annotation.WebServlet;
|
||||
import javax.servlet.http.HttpServlet;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.IOException;
|
||||
|
||||
@WebServlet(name = "Srvlt_TeacherSelectStudent")
|
||||
public class Srvlt_TeacherSelectStudent extends HttpServlet {
|
||||
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
|
||||
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue