View Javadoc

1   package org.apache.turbine.om.security;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "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.TorqueUser;
23  
24  /***
25   * A generic implementation of User interface.
26   *
27   * This basic implementation contains the functionality that is
28   * expected to be common among all User implementations.
29   * You are welcome to extend this class if you wish to have
30   * custom functionality in your user objects (like accessor methods
31   * for custom attributes). <b>Note</b> that implementing a different scheme
32   * of user data storage normally involves writing an implementation of
33   * {@link org.apache.turbine.services.security.UserManager} interface.
34   *
35   * @author <a href="mailto:josh@stonecottage.com">Josh Lucas</a>
36   * @author <a href="mailto:jon@collab.net">Jon S. Stevens</a>
37   * @author <a href="mailto:john.mcnally@clearink.com">John D. McNally</a>
38   * @author <a href="mailto:frank.kim@clearink.com">Frank Y. Kim</a>
39   * @author <a href="mailto:cberry@gluecode.com">Craig D. Berry</a>
40   * @author <a href="mailto:epugh@upstate.com">Eric Pugh</a>
41   * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
42   *
43   * @deprecated Use {@link org.apache.turbine.services.security.torque.TorqueUser}
44   * instead.
45   *
46   * @version $Id: TurbineUser.java 571795 2007-09-01 13:09:35Z tv $
47   */
48  public class TurbineUser extends TorqueUser
49  {
50      /*** Serial Version UID */
51      private static final long serialVersionUID = -6090627713197456117L;
52  }