Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network.implementation;
import java.util.List;
import com.microsoft.azure.management.network.EffectiveRoute;
import com.fasterxml.jackson.annotation.JsonProperty;
Response for list effective route API service call.
/**
* Response for list effective route API service call.
*/
public class EffectiveRouteListResultInner {
A list of effective routes.
/**
* A list of effective routes.
*/
@JsonProperty(value = "value")
private List<EffectiveRoute> value;
The URL to get the next set of results.
/**
* The URL to get the next set of results.
*/
@JsonProperty(value = "nextLink", access = JsonProperty.Access.WRITE_ONLY)
private String nextLink;
Get a list of effective routes.
Returns: the value value
/**
* Get a list of effective routes.
*
* @return the value value
*/
public List<EffectiveRoute> value() {
return this.value;
}
Set a list of effective routes.
Params: - value – the value value to set
Returns: the EffectiveRouteListResultInner object itself.
/**
* Set a list of effective routes.
*
* @param value the value value to set
* @return the EffectiveRouteListResultInner object itself.
*/
public EffectiveRouteListResultInner withValue(List<EffectiveRoute> value) {
this.value = value;
return this;
}
Get the URL to get the next set of results.
Returns: the nextLink value
/**
* Get the URL to get the next set of results.
*
* @return the nextLink value
*/
public String nextLink() {
return this.nextLink;
}
}