Examples of addMappingEntry()


Examples of com.sun.mfwk.agent.appserv.delegate.DefaultDelegate.addMappingEntry()

                        // construct the attribute handler
                        AttributeHandler handler = buildAttrHandler(
                                CMM_MbeanDescriptor, mapping, asAttr, mfAttr);

                        // add mapping with handler
                        delegate.addMappingEntry(mfAttr, asAttr, asON, handler);

                    } else {

                        // add mapping without handler
                        delegate.addMappingEntry(mfAttr, asAttr, asON);
View Full Code Here

Examples of com.sun.mfwk.agent.appserv.delegate.DefaultDelegate.addMappingEntry()

                        delegate.addMappingEntry(mfAttr, asAttr, asON, handler);

                    } else {

                        // add mapping without handler
                        delegate.addMappingEntry(mfAttr, asAttr, asON);
                    }
                } catch (Exception e) {
                    LogDomains.getLogger().log(Level.WARNING,
                        "Error while adding mapping entry", e);
                }
View Full Code Here

Examples of com.sun.mfwk.agent.appserv.delegate.DefaultDelegate.addMappingEntry()

                ObjectNameHelper.tokenize(asObjName, _context.getTokens());
            // replace patterns with concrete object name
            ObjectName on = ObjectNameHelper.getObjectName(tokenizedON, _mbs);

            // adds the mapping for an attribute
            dd.addMappingEntry(mfAttr, asAttr, on);
        }

        // sets the name of the server instance
        String instanceName = _context.getServerName();
        dd.setServerName(instanceName);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.