@Traced(operationName="wsOperations") @Path(value="testServicesWithOpName") public class TestServerWebServicesWithOperationName extends Object
Modifier and Type | Field and Description |
---|---|
static String |
CLASS_OPERATION_NAME
Traced operationName prefix.
|
static String |
ENDPOINT_OPERATION_NAME
Explicit endpoint operation name.
|
static String |
REST_OPERATION_CLASS_AND_METHOD_OP_NAME
Web service endpoint with an explicit operation name on the class and endpoint.
|
static String |
REST_OPERATION_CLASS_OP_NAME
Web service endpoint with an explicit operation name on the class.
|
static String |
REST_TEST_SERVICE_PATH_WITH_OP_NAME
The path to this set of web services.
|
Constructor and Description |
---|
TestServerWebServicesWithOperationName() |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
classAndMethodOperationName()
Test class and endpoint with Traced annotation and operation name.
|
javax.ws.rs.core.Response |
classOperationName()
Test class with Traced annotation and operation name.
|
public static final String REST_TEST_SERVICE_PATH_WITH_OP_NAME
public static final String CLASS_OPERATION_NAME
public static final String REST_OPERATION_CLASS_OP_NAME
public static final String REST_OPERATION_CLASS_AND_METHOD_OP_NAME
public static final String ENDPOINT_OPERATION_NAME
public TestServerWebServicesWithOperationName()
@GET @Path(value="classOperationName") @Produces(value="text/plain") public javax.ws.rs.core.Response classOperationName()
@Traced(operationName="endpointName") @GET @Path(value="classAndMethodOperationName") @Produces(value="text/plain") public javax.ws.rs.core.Response classAndMethodOperationName()
Copyright © 2020 Eclipse Foundation. All rights reserved.