1 24 package org.objectweb.joram.shared.admin; 25 26 public class AddServiceRequest extends AdminRequest { 27 private static final long serialVersionUID = 523453563847111089L; 28 29 private int serverId; 30 private String className; 31 private String args; 32 33 public AddServiceRequest(int serverId, 34 String className, 35 String args) { 36 this.serverId = serverId; 37 this.className = className; 38 this.args = args; 39 } 40 41 public final int getServerId() { 42 return serverId; 43 } 44 45 public final String getClassName() { 46 return className; 47 } 48 49 public final String getArgs() { 50 return args; 51 } 52 } 53 | Popular Tags |