Package com.gnizr.db.dao.tag

Examples of com.gnizr.db.dao.tag.TagPropertyDao


    TagProperty prpt = new TagProperty();
    prpt.setName("newprpt");
    prpt.setNamespacePrefix("gn");
    assertTrue(manager.addTagProperty(prpt));
   
    TagPropertyDao prptDao = getGnizrDao().getTagPropertyDao();
    prpt = prptDao.getTagProperty("gn","newprpt");
    Boolean okay = prptDao.deleteTagProperty(prpt.getId());
    assertTrue(okay);
  }
View Full Code Here


  }

  public void testDeleteTagProperty() throws Exception{
    TagProperty prpt = new TagProperty(1);
    assertTrue(manager.deleteTagProperty(prpt));
    TagPropertyDao prptDao = getGnizrDao().getTagPropertyDao();
    assertNull(prptDao.getTagProperty("skos","related"));
    assertFalse(manager.deleteTagProperty(new TagProperty((3939))));
  }
View Full Code Here

TOP

Related Classes of com.gnizr.db.dao.tag.TagPropertyDao

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.