KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > joram > shared > admin > AddServerRequest


1 /*
2  * JORAM: Java(TM) Open Reliable Asynchronous Messaging
3  * Copyright (C) 2001 - 2006 ScalAgent Distributed Technologies
4  * Copyright (C) 1996 - 2000 Dyade
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA.
20  *
21  * Initial developer(s): ScalAgent Distributed Technologies
22  * Contributor(s):
23  */

24 package org.objectweb.joram.shared.admin;
25
26 public class AddServerRequest extends AdminRequest {
27
28   private static final long serialVersionUID = -4803635763566324018L;
29
30   private String JavaDoc serverName;
31   private String JavaDoc hostName;
32   private int serverId;
33   private String JavaDoc domainName;
34   private int port;
35   private String JavaDoc[] serviceNames;
36   private String JavaDoc[] serviceArgs;
37
38   public AddServerRequest(int serverId,
39                           String JavaDoc hostName,
40                           String JavaDoc domainName,
41                           int port,
42                           String JavaDoc serverName,
43                           String JavaDoc[] serviceNames,
44                           String JavaDoc[] serviceArgs) {
45     this.serverId = serverId;
46     this.hostName = hostName;
47     this.serverName = serverName;
48     this.domainName = domainName;
49     this.port = port;
50     this.serviceNames = serviceNames;
51     this.serviceArgs = serviceArgs;
52   }
53
54   public final String JavaDoc getServerName() {
55     return serverName;
56   }
57
58   public final String JavaDoc getHostName() {
59     return hostName;
60   }
61
62   public final int getServerId() {
63     return serverId;
64   }
65
66   public final String JavaDoc getDomainName() {
67     return domainName;
68   }
69
70   public final int getPort() {
71     return port;
72   }
73
74   public final String JavaDoc[] getServiceNames() {
75     return serviceNames;
76   }
77
78   public final String JavaDoc[] getServiceArgs() {
79     return serviceArgs;
80   }
81 }
82
Popular Tags