Examples of SmallStateContentImpl


Examples of org.infoglue.cms.entities.content.impl.simple.SmallStateContentImpl

      }

    ResultSet rs = psmt.executeQuery();
    while(rs.next())
    {
      SmallStateContentImpl content = new SmallStateContentImpl();
      content.setContentVersionId(new Integer(rs.getString(1)));
      content.setContentId(new Integer(rs.getString(8)));
      content.setName(rs.getString(2));
      content.setIsProtected(new Integer(rs.getString(3)));
      if(rs.getString(4) != null && !rs.getString(4).equals(""))
        content.setContentTypeDefinitionId(new Integer(rs.getString(4)));
      content.setRepositoryId(new Integer(rs.getString(5)));
      if(rs.getString(6) == null)
      {
        logger.warn("Parent content ID was null on " + content.getId());
        content.setParentContentId(null);
      }
      else
        content.setParentContentId(new Integer(rs.getString(6)));
      content.setStateId(new Integer(rs.getString(7)));
            siteNodeVOMap.put(content.getValueObject().getContentVersionId(), content.getValueObject());
            logger.info("Adding:" + content.getValueObject().getContentVersionId() + "=" + content.getValueObject());
    }
    rs.close();
    psmt.close();

    /*
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.