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

The following examples show how to use com.sun.org.glassfish.gmbal.ManagedAttribute. 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: BindingTypeFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public String getBindingId() {
    return bindingId;
}
 
Example #2
Source File: SchemaValidationFeature.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Override
public String getID() {
    return ID;
}
 
Example #3
Source File: MonitorRootClient.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
private Map<QName, PortInfo> qnameToPortInfoMap() { return stub.owner.getQNameToPortInfoMap(); }
 
Example #4
Source File: MonitorRootService.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Service name")
public @NotNull QName serviceName() {
    return endpoint.getServiceName();
}
 
Example #5
Source File: MonitorRootService.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Show what goes across HTTP transport")
public void dumpHTTPMessages(final boolean x) { HttpAdapter.setDump(x); }
 
Example #6
Source File: MessageDumpingFeature.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public Level getMessageLoggingLevel() {
    return messageLoggingLevel;
}
 
Example #7
Source File: MonitorRootService.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Binding Identifier")
public @NotNull BindingID bindingID() {
    return endpoint.getBinding().getBindingId();
}
 
Example #8
Source File: MonitorRootClient.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
private Map<QName, PortInfo> qnameToPortInfoMap() { return stub.owner.getQNameToPortInfoMap(); }
 
Example #9
Source File: MonitorRootClient.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
private QName serviceName() { return stub.owner.getServiceName(); }
 
Example #10
Source File: MonitorRootClient.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
private Class serviceClass() { return stub.owner.getServiceClass(); }
 
Example #11
Source File: MonitorRootClient.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
private URL wsdlDocumentLocation() { return stub.owner.getWSDLDocumentLocation(); }
 
Example #12
Source File: MonitorRootService.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Policy associated with Endpoint")
public String policy() {
    return endpoint.getPolicyMap() != null ?
           endpoint.getPolicyMap().toString() : null;
}
 
Example #13
Source File: FastInfosetFeature.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #14
Source File: MonitorRootService.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Container")
public @NotNull Container container() {
    return endpoint.getContainer();
}
 
Example #15
Source File: FastInfosetFeature.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #16
Source File: TubelineFeature.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Override
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #17
Source File: BindingTypeFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #18
Source File: MemberSubmissionAddressingFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public MemberSubmissionAddressing.Validation getValidation() {
    return validation;
}
 
Example #19
Source File: MemberSubmissionAddressingFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public boolean isRequired() {
    return required;
}
 
Example #20
Source File: MemberSubmissionAddressingFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #21
Source File: SelectOptimalEncodingFeature.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #22
Source File: UsesJAXBContextFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #23
Source File: MonitorRootService.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("If true: show what goes across HTTP transport")
public boolean dumpHTTPMessages() { return HttpAdapter.dump; }
 
Example #24
Source File: TubelineFeature.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #25
Source File: MonitorRootService.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Show what goes across HTTP transport")
public void dumpHTTPMessages(final boolean x) { HttpAdapter.setDump(x); }
 
Example #26
Source File: MemberSubmissionAddressingFeature.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public String getID() {
    return ID;
}
 
Example #27
Source File: MonitorRootService.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Binding features")
public @NotNull WSFeatureList features() {
    return endpoint.getBinding().getFeatures();
}
 
Example #28
Source File: BindingTypeFeature.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
public String getBindingId() {
    return bindingId;
}
 
Example #29
Source File: MonitorRootService.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("System ID where document is taken from")
public URL serviceDefinitionURL() {
    return endpoint.getServiceDefinition() != null ?
           endpoint.getServiceDefinition().getPrimary().getURL() : null;
}
 
Example #30
Source File: MonitorRootService.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@ManagedAttribute
@Description("Endpoint address")
public EndpointAddress wsdlEndpointAddress() {
    return endpoint.getPort() != null ?
           endpoint.getPort().getAddress() : null;
}