Java源码示例:com.sun.org.glassfish.gmbal.ManagedAttribute

示例1
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例2
/**
 * {@inheritDoc}
 */
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例3
@ManagedAttribute
@Override
public String getID() {
    return ID;
}
 
示例4
@ManagedAttribute
public String getMessageLoggingRoot() {
    return messageLoggingRoot;
}
 
示例5
@ManagedAttribute
public MemberSubmissionAddressing.Validation getValidation() {
    return validation;
}
 
示例6
@ManagedAttribute
@Description("Service name")
public @NotNull QName serviceName() {
    return endpoint.getServiceName();
}
 
示例7
@ManagedAttribute
public boolean isRequired() {
    return required;
}
 
示例8
@Override
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例9
@ManagedAttribute
public boolean getMessageLoggingStatus() {
    return messageLoggingStatus.get();
}
 
示例10
@ManagedAttribute
@Description("Documents referenced")
public Set<String> serviceDefinitionImports() {
    return endpoint.getServiceDefinition() != null ?
           endpoint.getServiceDefinition().getPrimary().getImports() : null;
}
 
示例11
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例12
@ManagedAttribute
private Container getContainer() { return stub.owner.getContainer(); }
 
示例13
@ManagedAttribute
@Description("Show what goes across HTTP transport")
public void dumpHTTPMessages(final boolean x) { HttpAdapter.setDump(x); }
 
示例14
@ManagedAttribute
private Class serviceClass() { return stub.owner.getServiceClass(); }
 
示例15
@ManagedAttribute
private URL wsdlDocumentLocation() { return stub.owner.getWSDLDocumentLocation(); }
 
示例16
@ManagedAttribute
private WSDLService wsdlService() { return stub.owner.getWsdlService(); }
 
示例17
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例18
/**
 * {@inheritDoc}
 */
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例19
@Override
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例20
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例21
@ManagedAttribute
@Description("Binding Addressing Version")
public AddressingVersion addressingVersion() {
    return endpoint.getBinding().getAddressingVersion();
}
 
示例22
@ManagedAttribute
public String getID() {
    return ID;
}
 
示例23
@ManagedAttribute
@Description("System ID where document is taken from")
public URL serviceDefinitionURL() {
    return endpoint.getServiceDefinition() != null ?
           endpoint.getServiceDefinition().getPrimary().getURL() : null;
}
 
示例24
@ManagedAttribute
private WSDLService wsdlService() { return stub.owner.getWsdlService(); }
 
示例25
@ManagedAttribute
@Description("WSDLPort bound port type")
public QName wsdlPortTypeName() {
    return endpoint.getPort() != null ?
           endpoint.getPort().getBinding().getPortTypeName() : null;
}
 
示例26
@ManagedAttribute
@Description("Endpoint address")
public EndpointAddress wsdlEndpointAddress() {
    return endpoint.getPort() != null ?
           endpoint.getPort().getAddress() : null;
}
 
示例27
@ManagedAttribute
@Description("System ID where document is taken from")
public URL serviceDefinitionURL() {
    return endpoint.getServiceDefinition() != null ?
           endpoint.getServiceDefinition().getPrimary().getURL() : null;
}
 
示例28
@ManagedAttribute
public String getBindingId() {
    return bindingId;
}
 
示例29
@ManagedAttribute
@Description("Binding features")
public @NotNull WSFeatureList features() {
    return endpoint.getBinding().getFeatures();
}
 
示例30
@ManagedAttribute
@Description("If true: show what goes across HTTP transport")
public boolean dumpHTTPMessages() { return HttpAdapter.dump; }