Package org.openqreg.bean

Examples of org.openqreg.bean.CountryKey


/**
* @return The primaryKey
*
*/
public PrimaryKey getPrimaryKey() {
return new CountryKey(getId());
}
View Full Code Here


      country1.create(con);
     
      country1.setStatus(new Integer(Status.INACTIVE));
      country1.store(con);

      CountryBean country2 = (CountryBean) CountryFinderBase.findByPrimaryKey(con, new CountryKey(country1.getId()));
      assertEquals("Countryn skall vara lika", country1, country2);
      assertEquals("Countryn skall ha samma status", country1.getStatus(), country2.getStatus());

      country1.remove(con);
      country2 = (CountryBean) CountryFinderBase.findByPrimaryKey(con, new CountryKey(country1.getId()));
      assertNull("Ingen tr�ff f�rv�ntad", country2);
      con.rollback();
      con.close();

    } catch (SQLException e) {
View Full Code Here

      //Spara och ladda attribut
      CountryBean country1 = BeanFactory.getCountry("bi");
      country1.setAttribute("name1", "value1");
      country1.create(con);
      CountryBean country2 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country1.getId()));
      assertEquals("Countryna skall vara lika", country1, country2);
      assertEquals("Attributen skall vara lika", country1.getAttribute("name1"), country2.getAttribute("name1"));
     
      //Radera attribut
      country2.removeAttribute("name1");
      assertNull("Attributet skall inte finnas", country2.getAttribute("name1"));
      country2.store(con);
      country1 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country2.getId()));
      assertNull("Attributet skall inte finnas", country2.getAttribute("name1"));

      //Uppdatera attribut
      country1.setAttribute("name1", "value1");
      country1.store(con);
      country1.setAttribute("name1", "newvalue1");
      country1.store(con);
      country2 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country1.getId()));
      assertEquals("Attributet skall ha nytt v�rde", "newvalue1", country2.getAttribute("name1"));
      country2.removeAllAttributes();
      country2.store(con);
     
      //Skapa tre attribut, d�refter uppdatera ett och radera ett
      assertTrue("Det skall inte finnas n�gra attribut", country2.getAttributes().isEmpty());
      country2.setAttribute("name1", "value1");
      country2.setAttribute("name2", "value2");
      country2.setAttribute("name3", "value3");
      country2.store(con);
     
      country2.setAttribute("name1", "newvalue1");
      country2.removeAttribute("name2");
      country2.setAttribute("name3", "");
      assertEquals("Det skall finnas tv� attribut", 2, country2.getAttributes().size());
      country2.store(con);
     
      country1 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country2.getId()));
      assertEquals("Det skall finnas ett attribut", 1, country1.getAttributes().size());
      assertEquals("Fel attributv�rde", "newvalue1", country1.getAttribute("name1"));
      assertNull("Attributet skall inte finnas", country1.getAttribute("name2"));
      assertNull("Attributet skall inte finnas", country1.getAttribute("name3"));
     
      country1.remove(con);
      country2 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country1.getId()));
      assertNull("Country skall inte finnas", country2);
      con.rollback();
      con.close();
     
    }catch(SQLException sqle){
View Full Code Here

   * @see org.openqregtag.AbstractStepHandlerTag#populateKeysAndBeans()
   */
  @Override
  protected void populateKeysAndBeans(Connection con) throws SQLException {
    countryBean = (CountryBean) CountryFinderBase
        .findByPrimaryKey(new CountryKey(fetch
            .getValueAsString("COUNTRY_ID")));
  }
View Full Code Here

*/
public static Object findByPrimaryKey(Connection con, PrimaryKey key) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
CountryBean valueObject = null;
CountryKey primaryKey = (CountryKey) key;
try{
pStmt = con.prepareStatement(CountryBeanBase.SELECT_STATEMENT);
pStmt.setObject(1, primaryKey.getId());
rs = pStmt.executeQuery();
while (rs.next()){
valueObject = populate(rs);
valueObject.afterPopulate(con);
}
View Full Code Here

TOP

Related Classes of org.openqreg.bean.CountryKey

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.