Package org.hpi.dialogue.protocol.request

Source Code of org.hpi.dialogue.protocol.request.ServerShutdownRequest

package org.hpi.dialogue.protocol.request;

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

public class ServerShutdownRequest extends Request {

  private static final long serialVersionUID = 6846531282892118159L;

  @Override
  public String getServiceName() {
    return HPIDialogueConstants.SERVER_SHUTDOWN_SERVICE;
  }
 
  @Override
  public SSDObjectNode getSSDParameters() {
    return new SSDObjectNode(HPIDialogueConstants.PARAMETERS);
  }
}
TOP

Related Classes of org.hpi.dialogue.protocol.request.ServerShutdownRequest

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.