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.webclient;
07:
08: /**
09: *
10: * @author Herko ter Horst
11: */
12: public interface SessionKeys {
13: public static final String SERVER_KEY = "openrdf-server";
14:
15: public static final String REPOSITORY_KEY = "openrdf-repository";
16: public static final String REPOSITORY_EXCEPTION_KEY = "openrdf-repository-exception";
17:
18: public static final String REPOSITORY_INFO_KEY = "openrdf-repository-info";
19: }
|