Package org.lightfish.presentation.administration.escalation

Source Code of org.lightfish.presentation.administration.escalation.AddScript

/*
Copyright 2012 Adam Bien, adam-bien.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.lightfish.presentation.administration.escalation;


import java.io.Serializable;
import javax.ejb.Stateful;
import javax.ejb.Stateless;
import javax.enterprise.inject.Model;
import javax.inject.Inject;
import javax.inject.Named;
import org.lightfish.business.escalation.boundary.ScriptingResource;
import org.lightfish.business.escalation.control.ScriptStore;
import org.lightfish.business.escalation.entity.Script;

/**
*
* @author Rob Veldpaus
*/
@Named
@Stateless
public class AddScript{
    @Inject ScriptStore scriptStore;
   
    private String scriptName;
    private String content;
    private String basicMessage;
    private String richMessage;

    public String getScriptName() {
        return scriptName;
    }

    public void setScriptName(String scriptName) {
        this.scriptName = scriptName;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public String getBasicMessage() {
        return basicMessage;
    }

    public void setBasicMessage(String basicMessage) {
        this.basicMessage = basicMessage;
    }

    public String getRichMessage() {
        return richMessage;
    }

    public void setRichMessage(String richMessage) {
        this.richMessage = richMessage;
    }


   
   
    public String save(){
        Script script = new Script();
        script.setName(scriptName);
        script.setContent(content);
        script.setBasicMessage(basicMessage);
        script.setRichMessage(richMessage);
        script.setActive(true);
        scriptStore.save(script);
       
        scriptName = null;
        content = null;
       
        return "/escalation/configuration?faces-redirect=true";
    }
   
}
TOP

Related Classes of org.lightfish.presentation.administration.escalation.AddScript

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.