comparison artifact-database/src/main/java/org/dive4elements/artifactdatabase/FactoryBootstrap.java @ 475:415df0fc4fa1

Fixed maven group ids
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 12:23:04 +0200
parents d0ac790a6c89
children 05caf2e731d0 584591f8203c
comparison
equal deleted inserted replaced
474:0d3512c08989 475:415df0fc4fa1
4 * This program is free software under the LGPL (>=v2.1) 4 * This program is free software under the LGPL (>=v2.1)
5 * Read the file LGPL.txt coming with the software for details 5 * Read the file LGPL.txt coming with the software for details
6 * or visit http://www.gnu.org/licenses/ if it does not exist. 6 * or visit http://www.gnu.org/licenses/ if it does not exist.
7 */ 7 */
8 8
9 package de.intevation.artifactdatabase; 9 package org.dive4elements.artifactdatabase;
10 10
11 import de.intevation.artifacts.common.utils.Config; 11 import org.dive4elements.artifacts.common.utils.Config;
12 12
13 import de.intevation.artifacts.ArtifactCollectionFactory; 13 import org.dive4elements.artifacts.ArtifactCollectionFactory;
14 import de.intevation.artifacts.ArtifactContextFactory; 14 import org.dive4elements.artifacts.ArtifactContextFactory;
15 import de.intevation.artifacts.ArtifactFactory; 15 import org.dive4elements.artifacts.ArtifactFactory;
16 import de.intevation.artifacts.CallContext; 16 import org.dive4elements.artifacts.CallContext;
17 import de.intevation.artifacts.GlobalContext; 17 import org.dive4elements.artifacts.GlobalContext;
18 import de.intevation.artifacts.Hook; 18 import org.dive4elements.artifacts.Hook;
19 import de.intevation.artifacts.ServiceFactory; 19 import org.dive4elements.artifacts.ServiceFactory;
20 import de.intevation.artifacts.UserFactory; 20 import org.dive4elements.artifacts.UserFactory;
21 21
22 import de.intevation.artifacts.common.utils.StringUtils; 22 import org.dive4elements.artifacts.common.utils.StringUtils;
23 23
24 import de.intevation.artifactdatabase.rest.HTTPServer; 24 import org.dive4elements.artifactdatabase.rest.HTTPServer;
25 25
26 import java.util.ArrayList; 26 import java.util.ArrayList;
27 import java.util.List; 27 import java.util.List;
28 28
29 import org.apache.log4j.Logger; 29 import org.apache.log4j.Logger;
50 50
51 /** 51 /**
52 * The name of the default context factory. 52 * The name of the default context factory.
53 */ 53 */
54 public static final String DEFAULT_CONTEXT_FACTORY = 54 public static final String DEFAULT_CONTEXT_FACTORY =
55 "de.intevation.artifactdatabase.DefaultArtifactContextFactory"; 55 "org.dive4elements.artifactdatabase.DefaultArtifactContextFactory";
56 56
57 /** 57 /**
58 * XPath to figure out the names of the artifact factories from 58 * XPath to figure out the names of the artifact factories from
59 * the global configuration to be exposed by the artifact database. 59 * the global configuration to be exposed by the artifact database.
60 */ 60 */
78 78
79 /** 79 /**
80 * The name of the default user factory. 80 * The name of the default user factory.
81 */ 81 */
82 public static final String DEFAULT_USER_FACTORY = 82 public static final String DEFAULT_USER_FACTORY =
83 "de.intevation.artifactdatabase.DefaultUserFactory"; 83 "org.dive4elements.artifactdatabase.DefaultUserFactory";
84 84
85 /** 85 /**
86 * XPath to figure out the class name of the collection factory from global 86 * XPath to figure out the class name of the collection factory from global
87 * configuration. 87 * configuration.
88 */ 88 */
91 91
92 /** 92 /**
93 * The name of the default user factory. 93 * The name of the default user factory.
94 */ 94 */
95 public static final String DEFAULT_COLLECTION_FACTORY = 95 public static final String DEFAULT_COLLECTION_FACTORY =
96 "de.intevation.artifactdatabase.DefaultArtifactCollectionFactory"; 96 "org.dive4elements.artifactdatabase.DefaultArtifactCollectionFactory";
97 97
98 /** 98 /**
99 * XPath to figure out the secret used to sign the artifact exports 99 * XPath to figure out the secret used to sign the artifact exports
100 * made by the artfifact database server. 100 * made by the artfifact database server.
101 */ 101 */
116 116
117 public static final String HTTP_SERVER = 117 public static final String HTTP_SERVER =
118 "/artifact-database/rest-server/http-server/text()"; 118 "/artifact-database/rest-server/http-server/text()";
119 119
120 public static final String DEFAULT_HTTP_SERVER = 120 public static final String DEFAULT_HTTP_SERVER =
121 "de.intevation.artifactdatabase.rest.Standalone"; 121 "org.dive4elements.artifactdatabase.rest.Standalone";
122 122
123 public static final String LIFETIME_LISTENERS = 123 public static final String LIFETIME_LISTENERS =
124 "/artifact-database/lifetime-listeners/listener"; 124 "/artifact-database/lifetime-listeners/listener";
125 125
126 public static final String BACKEND_LISTENERS = 126 public static final String BACKEND_LISTENERS =

http://dive4elements.wald.intevation.org