Examples of saveProfile()


Examples of org.apache.cocoon.portal.profile.ProfileLS.saveProfile()

      Map key = this.buildKey(service, parameters, layoutKey, false);
 
      // save coplet instance data
      Object profile = ((Object[])service.getAttribute("CopletInstanceData:" + layoutKey))[0];
      adapter.saveProfile(key, parameters, profile);

      // save coplet instance data
      parameters.put("profiletype", "layout");
            key = this.buildKey(service, parameters, layoutKey, false);
      profile = ((Object[])service.getAttribute("Layout:" + layoutKey))[0];
View Full Code Here

Examples of org.apache.cocoon.portal.profile.ProfileLS.saveProfile()

      // save coplet instance data
      parameters.put("profiletype", "layout");
            key = this.buildKey(service, parameters, layoutKey, false);
      profile = ((Object[])service.getAttribute("Layout:" + layoutKey))[0];
      adapter.saveProfile(key, parameters, profile);
           
    } catch (Exception e) {
      // TODO
      throw new CascadingRuntimeException("Exception during save profile", e);
    } finally {
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.