Package project.entities.signature

Examples of project.entities.signature.Signature


public class SignatureDAOImpl extends HibernateDaoSupport implements
    SignatureDAO {

  @Override
  public Signature createSignature(String hash, String key, int person) {
    Signature signature = new Signature(hash, key, person);
    return (Signature) getHibernateTemplate().save(signature);
  }
View Full Code Here

TOP

Related Classes of project.entities.signature.Signature

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.