1 23 package org.objectweb.joram.shared.admin; 24 25 29 public class Monitor_GetServersIds extends Monitor_Request { 30 private static final long serialVersionUID = -219223518933031700L; 31 32 33 private int serverId; 34 35 private String domainName; 36 37 42 public Monitor_GetServersIds(int serverId) { 43 this(serverId, null); 44 } 45 46 53 public Monitor_GetServersIds(int serverId, 54 String domainName) { 55 this.serverId = serverId; 56 this.domainName = domainName; 57 } 58 59 60 public final int getServerId() { 61 return serverId; 62 } 63 64 public final String getDomainName() { 65 return domainName; 66 } 67 } 68 | Popular Tags |