Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.network.model;
import com.microsoft.azure.management.apigeneration.Fluent;
An interface representing a model's ability to reference a transport protocol.
Type parameters: - <ProtocolT> – the protocol type of the value
/**
* An interface representing a model's ability to reference a transport protocol.
* @param <ProtocolT> the protocol type of the value
*/
@Fluent()
public interface HasProtocol<ProtocolT> {
Returns: the protocol
/**
* @return the protocol
*/
ProtocolT protocol();
Grouping of definition stages involving specifying the protocol.
/**
* Grouping of definition stages involving specifying the protocol.
*/
interface DefinitionStages {
The stage of a definition allowing to specify the protocol.
Type parameters: - <ReturnT> – the next stage of the definition
- <ProtocolT> – the type of the protocol value
/**
* The stage of a definition allowing to specify the protocol.
* @param <ReturnT> the next stage of the definition
* @param <ProtocolT> the type of the protocol value
*/
interface WithProtocol<ReturnT, ProtocolT> {
Specifies the transport protocol.
Params: - protocol – a transport protocol
Returns: the next stage of the definition
/**
* Specifies the transport protocol.
* @param protocol a transport protocol
* @return the next stage of the definition
*/
ReturnT withProtocol(ProtocolT protocol);
}
}
Grouping of update stages involving modifying the protocol.
/**
* Grouping of update stages involving modifying the protocol.
*/
interface UpdateStages {
The stage of an update allowing to modify the transport protocol.
Type parameters: - <ReturnT> – the next stage of the update
- <ProtocolT> – the type of the protocol value
/**
* The stage of an update allowing to modify the transport protocol.
* @param <ReturnT> the next stage of the update
* @param <ProtocolT> the type of the protocol value
*/
interface WithProtocol<ReturnT, ProtocolT> {
Specifies the transport protocol.
Params: - protocol – a transport protocol
Returns: the next stage of the update
/**
* Specifies the transport protocol.
* @param protocol a transport protocol
* @return the next stage of the update
*/
ReturnT withProtocol(ProtocolT protocol);
}
}
Grouping of definition stages applicable as part of a load balancer update, involving specifying the protocol.
/**
* Grouping of definition stages applicable as part of a load balancer update, involving specifying the protocol.
*/
interface UpdateDefinitionStages {
The stage of a definition allowing to specify the protocol.
Type parameters: - <ReturnT> – the next stage of the definition
- <ProtocolT> – the protocol type of the value
/**
* The stage of a definition allowing to specify the protocol.
* @param <ReturnT> the next stage of the definition
* @param <ProtocolT> the protocol type of the value
*/
interface WithProtocol<ReturnT, ProtocolT> {
Specifies the transport protocol.
Params: - protocol – a transport protocol
Returns: the next stage of the definition
/**
* Specifies the transport protocol.
* @param protocol a transport protocol
* @return the next stage of the definition
*/
ReturnT withProtocol(ProtocolT protocol);
}
}
}