KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > management > support > oldconfig > OldServerMBean


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 /*
25  * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
26  * Use is subject to license terms.
27  */

28  
29 /*
30  * $Header: /cvs/glassfish/admin/mbeanapi-impl/src/java/com/sun/enterprise/management/support/oldconfig/OldServerMBean.java,v 1.2 2005/12/25 03:41:10 tcfujii Exp $
31  * $Revision: 1.2 $
32  * $Date: 2005/12/25 03:41:10 $
33  */

34
35 package com.sun.enterprise.management.support.oldconfig;
36
37 import java.util.Properties JavaDoc;
38 import javax.management.Attribute JavaDoc;
39 /**
40     Generated: Wed Apr 14 23:49:02 PDT 2004
41     Generated from:
42     com.sun.appserv:type=iiop-service,config=server-config,category=config
43 */

44
45 import javax.management.ObjectName JavaDoc;
46 import javax.management.AttributeList JavaDoc;
47
48
49 public interface OldServerMBean
50 {
51       /**
52
53       */

54       public String JavaDoc getConfigRef();
55       /**
56
57       */

58       public void setConfigRef( final String JavaDoc value );
59
60       /**
61
62       */

63       public String JavaDoc getName();
64       /**
65
66       */

67       public void setName( final String JavaDoc value );
68
69       /**
70
71       */

72       public String JavaDoc getNodeAgentRef();
73       /**
74
75       */

76       public void setNodeAgentRef( final String JavaDoc value );
77
78       public void clearRuntimeStatus();
79       public ObjectName JavaDoc createApplicationRef( final AttributeList JavaDoc attribute_list );
80       public void createApplicationReference( final boolean param1, final String JavaDoc param2, final String JavaDoc param3 );
81       public ObjectName JavaDoc createResourceRef( final AttributeList JavaDoc attribute_list );
82       public void createResourceReference( final boolean param1, final String JavaDoc param2 );
83       public void createSystemProperties( final Properties JavaDoc param1 );
84       public void delete();
85       public void deleteApplicationReference( final String JavaDoc param1 );
86       public void deleteResourceReference( final String JavaDoc param1 );
87       public void deleteSystemProperty( final String JavaDoc param1 );
88       public boolean destroyConfigElement();
89       public javax.management.ObjectName JavaDoc[] getApplicationRef();
90       public ObjectName JavaDoc getApplicationRefByRef( final String JavaDoc key );
91       public String JavaDoc getDefaultAttributeValue( final String JavaDoc attributeName );
92       public AttributeList JavaDoc getProperties();
93       public Object JavaDoc getPropertyValue( final String JavaDoc propertyName );
94       public javax.management.ObjectName JavaDoc[] getResourceRef();
95       public ObjectName JavaDoc getResourceRefByRef( final String JavaDoc key );
96       public AttributeList JavaDoc getSystemProperties();
97       public Object JavaDoc getSystemPropertyValue( final String JavaDoc propertyName );
98       public boolean isClustered();
99       public boolean isDAS();
100       public boolean isStandAlone();
101       public String JavaDoc[] listApplicationReferencesAsString();
102       public javax.management.ObjectName JavaDoc[] listApplicationRefsByType( final String JavaDoc param1 );
103       public ObjectName JavaDoc listConfiguration();
104       public String JavaDoc[] listResourceReferencesAsString();
105       public javax.management.ObjectName JavaDoc[] listResourceRefsByType( final String JavaDoc param1 );
106       public Properties JavaDoc listSystemProperties( final boolean param1 );
107       public void removeApplicationRefByRef( final String JavaDoc key );
108       public void removeResourceRefByRef( final String JavaDoc key );
109       public void setProperty( final Attribute JavaDoc nameAndValue );
110       public void setSystemProperty( final Attribute JavaDoc nameAndValue );
111       public void start();
112       public void stop();
113
114 }
Popular Tags