com.sun.org.glassfish.gmbal.ManagedObjectManagerFactory Java Examples

The following examples show how to use com.sun.org.glassfish.gmbal.ManagedObjectManagerFactory. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MonitorBase.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #2
Source File: MonitorBase.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #3
Source File: MonitorBase.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #4
Source File: MonitorBase.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #5
Source File: MonitorBase.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #6
Source File: MonitorBase.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #7
Source File: MonitorBase.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #8
Source File: MonitorBase.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
private @NotNull ManagedObjectManager createMOM(final boolean isFederated) {
    try {
        return new RewritingMOM(isFederated ?
            ManagedObjectManagerFactory.createFederated(
                AMXGlassfish.DEFAULT.serverMon(AMXGlassfish.DEFAULT.dasName()))
            :
            ManagedObjectManagerFactory.createStandalone("com.sun.metro"));
    } catch (Throwable t) {
        if (isFederated) {
            logger.log(Level.CONFIG, "Problem while attempting to federate with GlassFish AMX monitoring.  Trying standalone.", t);
            return createMOM(false);
        } else {
            logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
            return ManagedObjectManagerFactory.createNOOP();
        }
    }
}
 
Example #9
Source File: MonitorBase.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #10
Source File: MonitorBase.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #11
Source File: MonitorBase.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #12
Source File: MonitorBase.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #13
Source File: MonitorBase.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #14
Source File: MonitorBase.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #15
Source File: MonitorBase.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #16
Source File: MonitorBase.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Client monitoring is OFF by default because there is
 * no standard stub.close() method.  Therefore people do
 * not typically close a stub when they are done with it
 * (even though the RI does provide a .close).
 * <pre>
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    off     |      off      |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 * </pre>
*/
@NotNull public ManagedObjectManager createManagedObjectManager(final Stub stub) {
    EndpointAddress ea = stub.requestContext.getEndpointAddress();
    if (ea == null) {
        return ManagedObjectManagerFactory.createNOOP();
    }

    String rootName = ea.toString();

    final ManagedClientAssertion assertion =
        ManagedClientAssertion.getAssertion(stub.getPortInfo());
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This client", rootName);
        } else if (assertion.monitoringAttribute() == Setting.ON &&
                   clientMonitoring != Setting.OFF) {
            return createMOMLoop(rootName, 0);
        }
    }

    if (clientMonitoring == Setting.NOT_SET ||
        clientMonitoring == Setting.OFF)
    {
        return disabled("Global client", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #17
Source File: MonitorBase.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #18
Source File: MonitorBase.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}
 
Example #19
Source File: MonitorBase.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}
 
Example #20
Source File: MonitorBase.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #21
Source File: MonitorBase.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #22
Source File: MonitorBase.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}
 
Example #23
Source File: MonitorBase.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #24
Source File: MonitorBase.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}
 
Example #25
Source File: MonitorBase.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #26
Source File: MonitorBase.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}
 
Example #27
Source File: MonitorBase.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #28
Source File: MonitorBase.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}
 
Example #29
Source File: MonitorBase.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private @NotNull ManagedObjectManager initMOM(final ManagedObjectManager mom) {
    try {
        if (typelibDebug != -1) {
            mom.setTypelibDebug(typelibDebug);
        }
        if (registrationDebug.equals("FINE")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.FINE);
        } else if (registrationDebug.equals("NORMAL")) {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NORMAL);
        } else {
            mom.setRegistrationDebug(ManagedObjectManager.RegistrationDebugLevel.NONE);
        }

        mom.setRuntimeDebug(runtimeDebug);

        // Instead of GMBAL throwing an exception and logging
        // duplicate name, just have it return null.
        mom.suppressDuplicateRootReport(true);

        mom.stripPrefix(
            "com.sun.xml.internal.ws.server",
            "com.sun.xml.internal.ws.rx.rm.runtime.sequence");

        // Add annotations to a standard class
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(ManagedData.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(Description.class));
        mom.addAnnotation(javax.xml.ws.WebServiceFeature.class, DummyWebServiceFeature.class.getAnnotation(InheritedAttributes.class));

        // Defer so we can register "this" as root from
        // within constructor.
        mom.suspendJMXRegistration();

    } catch (Throwable t) {
        try {
            mom.close();
        } catch (IOException e) {
            logger.log(Level.CONFIG, "Ignoring exception caught when closing unused ManagedObjectManager", e);
        }
        logger.log(Level.WARNING, "Ignoring exception - starting up without monitoring", t);
        return ManagedObjectManagerFactory.createNOOP();
    }
    return mom;
}
 
Example #30
Source File: MonitorBase.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@NotNull private ManagedObjectManager disabled(final String x, final String rootName) {
    final String msg = x + " monitoring disabled. " + rootName + " will not be monitored";
    logger.log(Level.CONFIG, msg);
    return ManagedObjectManagerFactory.createNOOP();
}