Package org.hpi.dialogue.protocol.response

Source Code of org.hpi.dialogue.protocol.response.ExecuteInvokerResponse

/**
*
*/
package org.hpi.dialogue.protocol.response;

import org.hpi.dialogue.protocol.common.HPIDialogueConstants;
import org.simplestructruedata.entities.SSDObjectNode;

/**
* @author Jean Villete
*
*/
public class ExecuteInvokerResponse extends Response {

    private static final long serialVersionUID = 2655139286365237415L;

    public ExecuteInvokerResponse(String message, Status status) {
        super(message, status);
    }

    public String getServiceName() {
        return HPIDialogueConstants.EXECUTE_INVOKER_SERVICE;
    }

    public SSDObjectNode getSSDParameters() {
        return new SSDObjectNode(HPIDialogueConstants.PARAMETERS);
    }
}
TOP

Related Classes of org.hpi.dialogue.protocol.response.ExecuteInvokerResponse

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.