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;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
List of session IDs.
/**
* List of session IDs.
*/
public class SessionIds {
List of session IDs.
/**
* List of session IDs.
*/
@JsonProperty(value = "sessionIds")
private List<String> sessionIds;
Get list of session IDs.
Returns: the sessionIds value
/**
* Get list of session IDs.
*
* @return the sessionIds value
*/
public List<String> sessionIds() {
return this.sessionIds;
}
Set list of session IDs.
Params: - sessionIds – the sessionIds value to set
Returns: the SessionIds object itself.
/**
* Set list of session IDs.
*
* @param sessionIds the sessionIds value to set
* @return the SessionIds object itself.
*/
public SessionIds withSessionIds(List<String> sessionIds) {
this.sessionIds = sessionIds;
return this;
}
}