Class SBTopicListResult
- java.lang.Object
-
- com.azure.resourcemanager.servicebus.models.SBTopicListResult
-
public final class SBTopicListResult extends Object
The response to the List Topics operation.
-
-
Constructor Summary
Constructors Constructor Description SBTopicListResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringnextLink()Get the nextLink property: Link to the next set of results.voidvalidate()Validates the instance.List<SBTopicInner>value()Get the value property: Result of the List Topics operation.SBTopicListResultwithNextLink(String nextLink)Set the nextLink property: Link to the next set of results.SBTopicListResultwithValue(List<SBTopicInner> value)Set the value property: Result of the List Topics operation.
-
-
-
Method Detail
-
value
public List<SBTopicInner> value()
Get the value property: Result of the List Topics operation.- Returns:
- the value value.
-
withValue
public SBTopicListResult withValue(List<SBTopicInner> value)
Set the value property: Result of the List Topics operation.- Parameters:
value- the value value to set.- Returns:
- the SBTopicListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: Link to the next set of results. Not empty if Value contains incomplete list of topics.- Returns:
- the nextLink value.
-
withNextLink
public SBTopicListResult withNextLink(String nextLink)
Set the nextLink property: Link to the next set of results. Not empty if Value contains incomplete list of topics.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the SBTopicListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-