Account.java :  » Database-ORM » ODAL » com » odal » petstore » domain » Java Open Source

Java Open Source » Database ORM » ODAL 
ODAL » com » odal » petstore » domain » Account.java
/**
 *  Objective Database Abstraction Layer (ODAL)
 *  Copyright (c) 2004, The ODAL Development Group
 *  All rights reserved.
 *  For definition of the ODAL Development Group please refer to LICENCE.txt file
 *
 *  Distributable under LGPL license.
 *  See terms of license at gnu.org.
 */
package com.odal.petstore.domain;

import com.odal.petstore.persistence.gen.bean.AccountPoBean;

/**
 * @author Gennady Krizhevsky
 */
public class Account extends AccountPoBean {
    public Account() {
    }

    public Account(String userid) {
        super(userid);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.