01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.http.server.protocol;
07:
08: import org.openrdf.http.protocol.Protocol;
09: import org.openrdf.http.server.ServerInterceptor;
10:
11: /**
12: * Interceptor for protocol requests. Should not be a singleton bean! Configure
13: * as inner bean in openrdf-servlet.xml
14: *
15: * @author Herko ter Horst
16: */
17: public class ProtocolInterceptor extends ServerInterceptor {
18:
19: @Override
20: protected String getThreadName() {
21: return Protocol.PROTOCOL;
22: }
23: }
|