ApiContract.DefinitionStages.WithSoapApiType Interface

public static interface ApiContract.DefinitionStages.WithSoapApiType

The stage of the ApiContract definition allowing to specify soapApiType.

Method Summary

Modifier and Type Method and Description
abstract WithCreate withSoapApiType(SoapApiType soapApiType)

Specifies the soapApiType property: Type of API to create.

Method Details

withSoapApiType

public abstract ApiContract.DefinitionStages.WithCreate withSoapApiType(SoapApiType soapApiType)

Specifies the soapApiType property: Type of API to create. * `http` creates a REST API * `soap` creates a SOAP pass-through API * `websocket` creates websocket API * `graphql` creates GraphQL API..

Parameters:

soapApiType - Type of API to create. * http creates a REST API * soap creates a SOAP pass-through API * websocket creates websocket API * graphql creates GraphQL API.

Returns:

the next definition stage.

Applies to