~ronald-dekker/collatex/darmstadt

« back to all changes in this revision

Viewing changes to collatex-web/src/main/java/eu/interedition/collatex2/web/SessionController.java

  • Committer: Gregor Middell
  • Date: 2011-03-02 15:56:41 UTC
  • Revision ID: gregor@middell.net-20110302155641-6a7kz5oqft2bg89b
added embedded SQL database for stateful services; google-collections --> com.google.guava; config mechanism for collatex-web; range-based markup-model

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package eu.interedition.collatex2.web;
 
2
 
 
3
import org.springframework.stereotype.Controller;
 
4
import org.springframework.web.bind.annotation.RequestMapping;
 
5
import org.springframework.web.bind.annotation.RequestMethod;
 
6
 
 
7
@Controller
 
8
@RequestMapping("/session")
 
9
public class SessionController {
 
10
 
 
11
  @RequestMapping(value="{id}", method = RequestMethod.PUT)
 
12
  public void create() {
 
13
 
 
14
  }
 
15
}