/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
/**
*/
public final class CustomMBeanConfigTest
extends AMXTestBase {
// built-into server already; use the name; we can't rely on the server jars
public CustomMBeanConfigTest() {
if (checkNotOffline("ensureDefaultInstance")) {
}
}
public static String
return getDefaultInstanceName("CustomMBeanConfig");
}
public static CustomMBeanConfig
createProps());
}
return result;
}
public static CustomMBeanConfig
final DomainConfig domainConfig,
final CustomMBeanConfig custom =
"false",
optional);
return custom;
}
}
private void
_testGetAll() {
}
private void
}
private synchronized void
_testAttrs() {
// everything is already tested generically, but we'll
// do some basic sanity checks here
}
} else {
warning("CustomMBeanConfigTest: No custom MBeans to test");
}
}
/**
Create some dummy properties for creating a CustomMBeanConfig
*/
createProps() {
// these must be available in test MBean
return optional;
}
private static String
",type=" + TEST_TYPE;
}
public synchronized CustomMBeanConfig
final DomainConfig domainConfig,
}
public synchronized void
final CustomMBeanConfig config,
}
}
}
private void
}
private Set<ObjectName>
return mbeans;
}
private void
try {
}
catch (Exception e) {
}
}
}
}
public synchronized void
testCreateRemove() {
if (!checkNotOffline("testCreateRemove")) {
return;
}
printVerbose("custom MBeans already registered:\n" +
}
final int NUM = 3;
for (int i = 0; i < NUM; ++i) {
// leftover from a failed test...
}
final CustomMBeanConfig config =
//printVerbose( "created: " + Util.getObjectName( config ) );
}
_testGetAll();
_testAttrs();
//printVerbose( "removing: " + Util.getObjectName( config ) );
}
_testGetAll();
mySleep(100);
warning("after removing custom MBeans, " +
"they are still registered (not an AMX bug):\n" +
}
}
}