01: package org.apache.turbine.services.security.db;
02:
03: /*
04: * Licensed to the Apache Software Foundation (ASF) under one
05: * or more contributor license agreements. See the NOTICE file
06: * distributed with this work for additional information
07: * regarding copyright ownership. The ASF licenses this file
08: * to you under the Apache License, Version 2.0 (the
09: * "License"); you may not use this file except in compliance
10: * with the License. You may obtain a copy of the License at
11: *
12: * http://www.apache.org/licenses/LICENSE-2.0
13: *
14: * Unless required by applicable law or agreed to in writing,
15: * software distributed under the License is distributed on an
16: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17: * KIND, either express or implied. See the License for the
18: * specific language governing permissions and limitations
19: * under the License.
20: */
21:
22: import org.apache.turbine.services.security.torque.TorqueUserManager;
23:
24: /**
25: * An UserManager performs {@link org.apache.turbine.om.security.User}
26: * objects related tasks on behalf of the
27: * {@link org.apache.turbine.services.security.BaseSecurityService}.
28: *
29: * This implementation uses a relational database for storing user data. It
30: * expects that the User interface implementation will be castable to
31: * {@link org.apache.torque.om.BaseObject}.
32: *
33: * @author <a href="mailto:jon@collab.net">Jon S. Stevens</a>
34: * @author <a href="mailto:john.mcnally@clearink.com">John D. McNally</a>
35: * @author <a href="mailto:frank.kim@clearink.com">Frank Y. Kim</a>
36: * @author <a href="mailto:cberry@gluecode.com">Craig D. Berry</a>
37: * @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
38: * @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
39: * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
40: *
41: * @deprecated Use {@link org.apache.turbine.services.security.torque.TorqueUserManager}
42: * instead.
43: *
44: * @version $Id: DBUserManager.java 571795 2007-09-01 13:09:35Z tv $
45: */
46: public class DBUserManager extends TorqueUserManager {
47: }
|