Package com.gentics.api.lib.resolving

Examples of com.gentics.api.lib.resolving.Changeable


 
  public void createBean(CRResolvableBean bean) throws CRException{
    Map<String, Object> map = bean.getAttrMap();
    map.put("obj_type", bean.getObj_type());
    try {
      Changeable changeable = wDs.create(map);
      wDs.store(Collections.singleton(changeable));
    } catch (DatasourceException e) {
      throw new CRException(e);
    }
    contentids.add(bean.getContentid());
View Full Code Here

TOP

Related Classes of com.gentics.api.lib.resolving.Changeable

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.