本文整理汇总了Java中javax.management.openmbean.OpenMBeanOperationInfoSupport类的典型用法代码示例。如果您正苦于以下问题:Java OpenMBeanOperationInfoSupport类的具体用法?Java OpenMBeanOperationInfoSupport怎么用?Java OpenMBeanOperationInfoSupport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OpenMBeanOperationInfoSupport类属于javax.management.openmbean包,在下文中一共展示了OpenMBeanOperationInfoSupport类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getMBeanInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
@Override
public MBeanInfo getMBeanInfo() {
ArrayList<OpenMBeanAttributeInfoSupport> attributes = new ArrayList<>();
attributes.add(new OpenMBeanAttributeInfoSupport("enabled", "enabled", SimpleType.BOOLEAN, true, true, true));
for (String type : registry.getTypes()) {
attributes.add(new OpenMBeanAttributeInfoSupport(type, type, getCompositeType(type), true, false, false));
}
OpenMBeanParameterInfo[] params = new OpenMBeanParameterInfoSupport[0];
OpenMBeanOperationInfoSupport reset = new OpenMBeanOperationInfoSupport("reset", "Reset all Metrics", params,
SimpleType.VOID, MBeanOperationInfo.ACTION);
OpenMBeanInfoSupport PSOMBInfo = new OpenMBeanInfoSupport(this.getClass().getName(), description,
attributes.toArray(new OpenMBeanAttributeInfoSupport[0]), new OpenMBeanConstructorInfoSupport[0],
new OpenMBeanOperationInfoSupport[] { reset }, new MBeanNotificationInfo[0]);
return PSOMBInfo;
}
开发者ID:mevdschee,项目名称:tqdev-metrics,代码行数:21,代码来源:JmxReporter.java
示例2: getOperation
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
private OpenMBeanOperationInfo getOperation(String name, OpenMBeanParameterInfo addWildcardChildName, OperationEntry entry) {
ModelNode opNode = entry.getDescriptionProvider().getModelDescription(null);
OpenMBeanParameterInfo[] params = getParameterInfos(opNode);
if (addWildcardChildName != null) {
OpenMBeanParameterInfo[] newParams = new OpenMBeanParameterInfo[params.length + 1];
newParams[0] = addWildcardChildName;
System.arraycopy(params, 0, newParams, 1, params.length);
params = newParams;
}
return new OpenMBeanOperationInfoSupport(
name,
getDescription(opNode),
params,
getReturnType(opNode),
entry.getFlags().contains(Flag.READ_ONLY) ? MBeanOperationInfo.INFO : MBeanOperationInfo.UNKNOWN,
createOperationDescriptor());
}
开发者ID:wildfly,项目名称:wildfly-core,代码行数:18,代码来源:MBeanInfoFactory.java
示例3: customize
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
private static MBeanOperationInfo
customize(MBeanOperationInfo oi,
String description,
MBeanParameterInfo[] signature,
int impact) {
if (equal(description, oi.getDescription()) &&
identicalArrays(signature, oi.getSignature()) &&
impact == oi.getImpact())
return oi;
if (oi instanceof OpenMBeanOperationInfo) {
OpenMBeanOperationInfo ooi = (OpenMBeanOperationInfo) oi;
OpenMBeanParameterInfo[] oparams =
paramsToOpenParams(signature);
return new OpenMBeanOperationInfoSupport(oi.getName(),
description,
oparams,
ooi.getReturnOpenType(),
impact,
oi.getDescriptor());
} else {
return new MBeanOperationInfo(oi.getName(),
description,
signature,
oi.getReturnType(),
impact,
oi.getDescriptor());
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:29,代码来源:StandardMBean.java
示例4: getMBeanInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
public MBeanInfo getMBeanInfo() {
OpenMBeanParameterInfoSupport parameterInfoSupport = new OpenMBeanParameterInfoSupport(
"par name", "descripttiosdf", SimpleType.STRING);
OpenMBeanOperationInfo infoSupport = new OpenMBeanOperationInfoSupport(
operationName, "desciption",
new OpenMBeanParameterInfo[] { parameterInfoSupport },
SimpleType.STRING, MBeanOperationInfo.ACTION);
OpenMBeanAttributeInfoSupport attributeInfo = new OpenMBeanAttributeInfoSupport(
attrName, "description", SimpleType.STRING, true, true, false);
OpenMBeanInfoSupport beanInfoSupport = new OpenMBeanInfoSupport(this
.getClass().getName(), "descriptor",
new OpenMBeanAttributeInfo[] { attributeInfo }, null,
new OpenMBeanOperationInfo[] { infoSupport }, null);
return beanInfoSupport;
}
开发者ID:freeVM,项目名称:freeVM,代码行数:16,代码来源:RegistringOpenMBeanTest.java
示例5: getMBeanInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
public MBeanInfo getMBeanInfo() {
try {
OpenMBeanOperationInfo infoSupport = new OpenMBeanOperationInfoSupport(
operationName, "desciption", null, getCompositeType(),
MBeanOperationInfo.ACTION);
OpenMBeanInfoSupport beanInfoSupport = new OpenMBeanInfoSupport(
this.getClass().getName(), "descriptor", null, null,
new OpenMBeanOperationInfo[] { infoSupport }, null);
return beanInfoSupport;
} catch (OpenDataException e) {
e.printStackTrace();
assertTrue(false);
}
return null;
}
开发者ID:freeVM,项目名称:freeVM,代码行数:16,代码来源:CompositeDataSupportTest.java
示例6: getMBeanInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
public MBeanInfo getMBeanInfo() {
try {
OpenMBeanOperationInfo infoSupport = new OpenMBeanOperationInfoSupport(
operationName, "desciption", null, getTabularType(),
MBeanOperationInfo.ACTION);
OpenMBeanInfoSupport beanInfoSupport = new OpenMBeanInfoSupport(
this.getClass().getName(), "descriptor", null, null,
new OpenMBeanOperationInfo[] { infoSupport }, null);
return beanInfoSupport;
} catch (Exception e) {
e.printStackTrace();
assertTrue(false);
}
return null;
}
开发者ID:freeVM,项目名称:freeVM,代码行数:16,代码来源:TabularDataSupportTest.java
示例7: cacheMBeanInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
protected void cacheMBeanInfo(MBeanInfo info)
{
if (info == null)
return;
try
{
MBeanAttributeInfo[] oldA = info.getAttributes();
OpenMBeanAttributeInfo[] attribs =
new OpenMBeanAttributeInfoSupport[oldA.length];
for (int a = 0; a < oldA.length; ++a)
{
OpenMBeanParameterInfo param = Translator.translate(oldA[a].getType());
if (param.getMinValue() == null)
{
Object[] lv;
if (param.getLegalValues() == null)
lv = null;
else
lv = param.getLegalValues().toArray();
attribs[a] = new OpenMBeanAttributeInfoSupport(oldA[a].getName(),
oldA[a].getDescription(),
((OpenType<Object>)
param.getOpenType()),
oldA[a].isReadable(),
oldA[a].isWritable(),
oldA[a].isIs(),
param.getDefaultValue(),
lv);
}
else
attribs[a] = new OpenMBeanAttributeInfoSupport(oldA[a].getName(),
oldA[a].getDescription(),
((OpenType<Object>)
param.getOpenType()),
oldA[a].isReadable(),
oldA[a].isWritable(),
oldA[a].isIs(),
param.getDefaultValue(),
((Comparable<Object>)
param.getMinValue()),
((Comparable<Object>)
param.getMaxValue()));
}
MBeanConstructorInfo[] oldC = info.getConstructors();
OpenMBeanConstructorInfo[] cons = new OpenMBeanConstructorInfoSupport[oldC.length];
for (int a = 0; a < oldC.length; ++a)
cons[a] =
new OpenMBeanConstructorInfoSupport(oldC[a].getName(),
oldC[a].getDescription(),
translateSignature(oldC[a].getSignature()));
MBeanOperationInfo[] oldO = info.getOperations();
OpenMBeanOperationInfo[] ops = new OpenMBeanOperationInfoSupport[oldO.length];
for (int a = 0; a < oldO.length; ++a)
ops[a] =
new OpenMBeanOperationInfoSupport(oldO[a].getName(),
oldO[a].getDescription(),
translateSignature(oldO[a].getSignature()),
Translator.translate(oldO[a].getReturnType()).getOpenType(),
oldO[a].getImpact());
openInfo = new OpenMBeanInfoSupport(info.getClassName(), info.getDescription(),
attribs, cons, ops, info.getNotifications());
}
catch (OpenDataException e)
{
throw (InternalError) (new InternalError("A problem occurred creating the open type " +
"descriptors.").initCause(e));
}
}
开发者ID:vilie,项目名称:javify,代码行数:69,代码来源:BeanImpl.java
示例8: cacheMBeanInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
protected void cacheMBeanInfo(MBeanInfo info)
{
if (info == null)
return;
try
{
MBeanAttributeInfo[] oldA = info.getAttributes();
OpenMBeanAttributeInfo[] attribs =
new OpenMBeanAttributeInfoSupport[oldA.length];
for (int a = 0; a < oldA.length; ++a)
{
OpenMBeanParameterInfo param = Translator.translate(oldA[a].getType());
if (param.getMinValue() == null)
{
Object[] lv;
if (param.getLegalValues() == null)
lv = null;
else
lv = param.getLegalValues().toArray();
attribs[a] = new OpenMBeanAttributeInfoSupport(oldA[a].getName(),
oldA[a].getDescription(),
((OpenType<Object>)
param.getOpenType()),
oldA[a].isReadable(),
oldA[a].isWritable(),
oldA[a].isIs(),
param.getDefaultValue(),
lv);
}
else
attribs[a] = new OpenMBeanAttributeInfoSupport(oldA[a].getName(),
oldA[a].getDescription(),
((OpenType<Object>)
param.getOpenType()),
oldA[a].isReadable(),
oldA[a].isWritable(),
oldA[a].isIs(),
param.getDefaultValue(),
((Comparable<Object>)
param.getMinValue()),
((Comparable<Object>)
param.getMaxValue()));
}
MBeanConstructorInfo[] oldC = info.getConstructors();
OpenMBeanConstructorInfo[] cons = new OpenMBeanConstructorInfoSupport[oldC.length];
for (int a = 0; a < oldC.length; ++a)
cons[a] =
new OpenMBeanConstructorInfoSupport(oldC[a].getName(),
oldC[a].getDescription(),
translateSignature(oldC[a].getSignature()));
MBeanOperationInfo[] oldO = info.getOperations();
OpenMBeanOperationInfo[] ops = new OpenMBeanOperationInfoSupport[oldO.length];
for (int a = 0; a < oldO.length; ++a)
ops[a] =
new OpenMBeanOperationInfoSupport(oldO[a].getName(),
oldO[a].getDescription(),
translateSignature(oldO[a].getSignature()),
Translator.translate(oldO[a].getReturnType()).getOpenType(),
oldO[a].getImpact());
openInfo = new OpenMBeanInfoSupport(info.getClassName(), info.getDescription(),
attribs, cons, ops, info.getNotifications());
}
catch (OpenDataException e)
{
throw (InternalError) (new InternalError("A problem occurred creating the open type " +
"descriptors.").initCause(e));
}
}
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:69,代码来源:BeanImpl.java
示例9: createMBeanOperationInfo
import javax.management.openmbean.OpenMBeanOperationInfoSupport; //导入依赖的package包/类
/**
* The operations are pulled from the core cache and the member regions.
* @param cache
*
*/
private OpenMBeanOperationInfo[] createMBeanOperationInfo()
{
List<OpenMBeanOperationInfo> operations = new ArrayList<OpenMBeanOperationInfo>();
for(Cache cache : getKnownCaches())
{
if(cache != null && !cache.isInitialized())
operations.add(
new OpenMBeanOperationInfoSupport(initializePrefix + cache.getName(),
"Initialize the cache (root directory must be set first) \n" +
"This action is ignored if the cache is initialized.\n" +
"If the cache has been started with a valid configuration state available \n" +
"it will start in an initialized state. Changes to configuration will then require a restart of the server.",
new OpenMBeanParameterInfo[]{},
SimpleType.VOID, MBeanOperationInfo.ACTION)
);
if(cache != null && cache.isInitialized() && !cache.isEnabled() )
operations.add(
new OpenMBeanOperationInfoSupport(enablePrefix + cache.getName(),
"Enable the cache (cache must be initialized)",
new OpenMBeanParameterInfo[]{},
SimpleType.VOID, MBeanOperationInfo.ACTION)
);
else if(cache != null && cache.isEnabled())
operations.add(
new OpenMBeanOperationInfoSupport(disablePrefix + cache.getName(),
"Disable the cache (cache must be initialized and enabled)",
new OpenMBeanParameterInfo[]{},
SimpleType.VOID, MBeanOperationInfo.ACTION)
);
}
operations.add(
new OpenMBeanOperationInfoSupport(storeOperation,
"Store the named cache configuration to persistent storage",
new OpenMBeanParameterInfo[]{new OpenMBeanParameterInfoSupport("name", "the bname of the cache to save configuration of", SimpleType.STRING)},
SimpleType.VOID, MBeanOperationInfo.ACTION)
);
operations.add(
new OpenMBeanOperationInfoSupport(storeAllOperation,
"Store all current cache configuration to persistent storage",
new OpenMBeanParameterInfo[]{},
SimpleType.VOID, MBeanOperationInfo.ACTION)
);
operations.add(
new OpenMBeanOperationInfoSupport(createOperation,
"Create a new cache at the specified location.",
new OpenMBeanParameterInfo[]
{
new OpenMBeanParameterInfoSupport("cacheName", "The name of the cache (and the root of the configuration file name)", SimpleType.STRING),
new OpenMBeanParameterInfoSupport("cacheLocation", "The URI of the cache location (e.g. 'file:///vix/cache' or 'smb://server/cacheroot')", SimpleType.STRING),
new OpenMBeanParameterInfoSupport("prototypeName", "The name of the prototype or blank(e.g. 'VixPrototype', 'TestWithEvictionPrototype')", SimpleType.STRING)
},
SimpleType.STRING,
MBeanOperationInfo.ACTION)
);
return operations.toArray(new OpenMBeanOperationInfoSupport[operations.size()]);
}
开发者ID:VHAINNOVATIONS,项目名称:Telepathology,代码行数:69,代码来源:CacheManagerImpl.java
注:本文中的javax.management.openmbean.OpenMBeanOperationInfoSupport类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论