com.sun.xml.internal.ws.api.config.management.policy.ManagedServiceAssertion Java Examples

The following examples show how to use com.sun.xml.internal.ws.api.config.management.policy.ManagedServiceAssertion. 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: ManagementPolicyValidator.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #2
Source File: ManagementAssertionCreator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #3
Source File: ManagementPolicyValidator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #4
Source File: ManagementPolicyValidator.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #5
Source File: ManagementAssertionCreator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #6
Source File: ManagementPolicyValidator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #7
Source File: ManagementPolicyValidator.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #8
Source File: ManagementAssertionCreator.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #9
Source File: ManagementPolicyValidator.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #10
Source File: ManagementPolicyValidator.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #11
Source File: ManagementAssertionCreator.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #12
Source File: ManagementPolicyValidator.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #13
Source File: ManagementPolicyValidator.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #14
Source File: ManagementAssertionCreator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #15
Source File: ManagementPolicyValidator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #16
Source File: ManagementPolicyValidator.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #17
Source File: ManagementAssertionCreator.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #18
Source File: ManagementPolicyValidator.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #19
Source File: ManagementPolicyValidator.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #20
Source File: ManagementAssertionCreator.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #21
Source File: ManagementPolicyValidator.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateClientSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #22
Source File: ManagementPolicyValidator.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #23
Source File: ManagementAssertionCreator.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public PolicyAssertion createAssertion(AssertionData data, Collection<PolicyAssertion> assertionParameters,
        AssertionSet nestedAlternative, PolicyAssertionCreator defaultCreator) throws AssertionCreationException {
    final QName name = data.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(name)) {
        return new ManagedServiceAssertion(data, assertionParameters);
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(name)) {
        return new ManagedClientAssertion(data, assertionParameters);
    }
    else {
        return defaultCreator.createAssertion(data, assertionParameters, nestedAlternative, null);
    }
}
 
Example #24
Source File: ManagementPolicyValidator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public Fitness validateServerSide(PolicyAssertion assertion) {
    final QName assertionName = assertion.getName();
    if (ManagedServiceAssertion.MANAGED_SERVICE_QNAME.equals(assertionName)) {
        return Fitness.SUPPORTED;
    }
    else if (ManagedClientAssertion.MANAGED_CLIENT_QNAME.equals(assertionName)) {
        return Fitness.UNSUPPORTED;
    }
    else {
        return Fitness.UNKNOWN;
    }
}
 
Example #25
Source File: MonitorBase.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Endpoint monitoring is ON by default.
 *
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    on      |      on       |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 */
@NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) {
    // serviceName + portName identifies the managed objects under it.
    // There can be multiple services in the container.
    // The same serviceName+portName can live in different apps at
    // different endpoint addresses.
    //
    // In general, monitoring will add -N, where N is unique integer,
    // in case of collisions.
    //
    // The endpoint address would be unique, but we do not know
    // the endpoint address until the first request comes in,
    // which is after monitoring is setup.

    String rootName =
        endpoint.getServiceName().getLocalPart()
        + "-"
        + endpoint.getPortName().getLocalPart();

    if (rootName.equals("-")) {
        rootName = "provider";
    }

    // contextPath is not always available
    final String contextPath = getContextPath(endpoint);
    if (contextPath != null) {
        rootName = contextPath + "-" + rootName;
    }

    final ManagedServiceAssertion assertion =
        ManagedServiceAssertion.getAssertion(endpoint);
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This endpoint", rootName);
        }
    }

    if (endpointMonitoring.equals(Setting.OFF)) {
        return disabled("Global endpoint", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #26
Source File: MonitorBase.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Endpoint monitoring is ON by default.
 *
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    on      |      on       |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 */
@NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) {
    // serviceName + portName identifies the managed objects under it.
    // There can be multiple services in the container.
    // The same serviceName+portName can live in different apps at
    // different endpoint addresses.
    //
    // In general, monitoring will add -N, where N is unique integer,
    // in case of collisions.
    //
    // The endpoint address would be unique, but we do not know
    // the endpoint address until the first request comes in,
    // which is after monitoring is setup.

    String rootName =
        endpoint.getServiceName().getLocalPart()
        + "-"
        + endpoint.getPortName().getLocalPart();

    if (rootName.equals("-")) {
        rootName = "provider";
    }

    // contextPath is not always available
    final String contextPath = getContextPath(endpoint);
    if (contextPath != null) {
        rootName = contextPath + "-" + rootName;
    }

    final ManagedServiceAssertion assertion =
        ManagedServiceAssertion.getAssertion(endpoint);
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This endpoint", rootName);
        }
    }

    if (endpointMonitoring.equals(Setting.OFF)) {
        return disabled("Global endpoint", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #27
Source File: MonitorBase.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Endpoint monitoring is ON by default.
 *
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    on      |      on       |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 */
@NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) {
    // serviceName + portName identifies the managed objects under it.
    // There can be multiple services in the container.
    // The same serviceName+portName can live in different apps at
    // different endpoint addresses.
    //
    // In general, monitoring will add -N, where N is unique integer,
    // in case of collisions.
    //
    // The endpoint address would be unique, but we do not know
    // the endpoint address until the first request comes in,
    // which is after monitoring is setup.

    String rootName =
        endpoint.getServiceName().getLocalPart()
        + "-"
        + endpoint.getPortName().getLocalPart();

    if (rootName.equals("-")) {
        rootName = "provider";
    }

    // contextPath is not always available
    final String contextPath = getContextPath(endpoint);
    if (contextPath != null) {
        rootName = contextPath + "-" + rootName;
    }

    final ManagedServiceAssertion assertion =
        ManagedServiceAssertion.getAssertion(endpoint);
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This endpoint", rootName);
        }
    }

    if (endpointMonitoring.equals(Setting.OFF)) {
        return disabled("Global endpoint", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #28
Source File: MonitorBase.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Endpoint monitoring is ON by default.
 *
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    on      |      on       |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 */
@NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) {
    // serviceName + portName identifies the managed objects under it.
    // There can be multiple services in the container.
    // The same serviceName+portName can live in different apps at
    // different endpoint addresses.
    //
    // In general, monitoring will add -N, where N is unique integer,
    // in case of collisions.
    //
    // The endpoint address would be unique, but we do not know
    // the endpoint address until the first request comes in,
    // which is after monitoring is setup.

    String rootName =
        endpoint.getServiceName().getLocalPart()
        + "-"
        + endpoint.getPortName().getLocalPart();

    if (rootName.equals("-")) {
        rootName = "provider";
    }

    // contextPath is not always available
    final String contextPath = getContextPath(endpoint);
    if (contextPath != null) {
        rootName = contextPath + "-" + rootName;
    }

    final ManagedServiceAssertion assertion =
        ManagedServiceAssertion.getAssertion(endpoint);
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This endpoint", rootName);
        }
    }

    if (endpointMonitoring.equals(Setting.OFF)) {
        return disabled("Global endpoint", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #29
Source File: MonitorBase.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Endpoint monitoring is ON by default.
 *
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    on      |      on       |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 */
@NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) {
    // serviceName + portName identifies the managed objects under it.
    // There can be multiple services in the container.
    // The same serviceName+portName can live in different apps at
    // different endpoint addresses.
    //
    // In general, monitoring will add -N, where N is unique integer,
    // in case of collisions.
    //
    // The endpoint address would be unique, but we do not know
    // the endpoint address until the first request comes in,
    // which is after monitoring is setup.

    String rootName =
        endpoint.getServiceName().getLocalPart()
        + "-"
        + endpoint.getPortName().getLocalPart();

    if (rootName.equals("-")) {
        rootName = "provider";
    }

    // contextPath is not always available
    final String contextPath = getContextPath(endpoint);
    if (contextPath != null) {
        rootName = contextPath + "-" + rootName;
    }

    final ManagedServiceAssertion assertion =
        ManagedServiceAssertion.getAssertion(endpoint);
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This endpoint", rootName);
        }
    }

    if (endpointMonitoring.equals(Setting.OFF)) {
        return disabled("Global endpoint", rootName);
    }
    return createMOMLoop(rootName, 0);
}
 
Example #30
Source File: MonitorBase.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Endpoint monitoring is ON by default.
 *
 * prop    |  no assert | assert/no mon | assert/mon off | assert/mon on
 * -------------------------------------------------------------------
 * not set |    on      |      on       |     off        |     on
 * false   |    off     |      off      |     off        |     off
 * true    |    on      |      on       |     off        |     on
 */
@NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) {
    // serviceName + portName identifies the managed objects under it.
    // There can be multiple services in the container.
    // The same serviceName+portName can live in different apps at
    // different endpoint addresses.
    //
    // In general, monitoring will add -N, where N is unique integer,
    // in case of collisions.
    //
    // The endpoint address would be unique, but we do not know
    // the endpoint address until the first request comes in,
    // which is after monitoring is setup.

    String rootName =
        endpoint.getServiceName().getLocalPart()
        + "-"
        + endpoint.getPortName().getLocalPart();

    if (rootName.equals("-")) {
        rootName = "provider";
    }

    // contextPath is not always available
    final String contextPath = getContextPath(endpoint);
    if (contextPath != null) {
        rootName = contextPath + "-" + rootName;
    }

    final ManagedServiceAssertion assertion =
        ManagedServiceAssertion.getAssertion(endpoint);
    if (assertion != null) {
        final String id = assertion.getId();
        if (id != null) {
            rootName = id;
        }
        if (assertion.monitoringAttribute() == Setting.OFF) {
            return disabled("This endpoint", rootName);
        }
    }

    if (endpointMonitoring.equals(Setting.OFF)) {
        return disabled("Global endpoint", rootName);
    }
    return createMOMLoop(rootName, 0);
}