Package com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback

Examples of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.ContentFeedbackConfig


    public String edit() {
        try {
            IContentFeedbackConfig config = this.getContentFeedbackManager().getConfig();
            if (null == config) {
                config = new ContentFeedbackConfig();
            }
            this.setConfig((ContentFeedbackConfig) config);
        } catch (Throwable t) {
            ApsSystemUtils.logThrowable(t, this, "edit");
            return FAILURE;
View Full Code Here


    }

    public String update() {
        try {
      if (null == this.getConfig()) {
        this.setConfig(new ContentFeedbackConfig());
      }
            this.getContentFeedbackManager().updateConfig(this.getConfig());
            this.addActionMessage(this.getText("jpcontentfeedback.message.config.updated"));
        } catch (Throwable t) {
            ApsSystemUtils.logThrowable(t, this, "update");
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpcontentfeedback.aps.system.services.contentfeedback.ContentFeedbackConfig

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.