01: /**
02: * Copyright 2004-2005 jManage.org
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */package org.jmanage.core.modules.websphere;
16:
17: import org.jmanage.core.modules.JMXServerConnection;
18: import org.jmanage.core.management.ObjectName;
19: import org.jmanage.core.management.ObjectInfo;
20:
21: import java.util.Set;
22: import java.util.List;
23:
24: import com.ibm.websphere.management.AdminClient;
25:
26: import javax.management.MBeanInfo;
27: import javax.management.AttributeList;
28:
29: /**
30: * Date: Jan 23, 2005 5:54:49 PM
31: * @author Shashank Bellary
32: */
33: public class WebSphereServerConnection extends JMXServerConnection {
34:
35: private final AdminClient adminClient;
36:
37: public WebSphereServerConnection(AdminClient adminClient) {
38: super (adminClient, AdminClient.class);
39: assert adminClient != null;
40: this.adminClient = adminClient;
41: }
42: }
|