Package at.fhj.itm.model

Examples of at.fhj.itm.model.Location


      stmt.setInt(1, id);
      ResultSet set = stmt.executeQuery();

      set.next();

      Location loc = getLocationFromResultSet(set);

      set.close();
      stmt.close();

      return loc;
View Full Code Here


   * @throws ServiceException if a database error occurred
   */
  public boolean doRegistration(final String firstName, final String lastName, final String username,
    final String password, final String email, final String phone, final int zip, final String city)
  {
      Location loc = new Location(zip, city);
      User user = new User(-1, firstName, lastName, username, password, email, phone, loc,
        new java.util.Date(), this.randUtil.getRandSessionID());
      try
      {
    boolean updateSuccess = this.updateUser(user, "'s registration data!");
View Full Code Here

TOP

Related Classes of at.fhj.itm.model.Location

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.