Class SBNamespaceListResult
- java.lang.Object
-
- com.azure.resourcemanager.servicebus.models.SBNamespaceListResult
-
public final class SBNamespaceListResult extends Object
The response of the List Namespace operation.
-
-
Constructor Summary
Constructors Constructor Description SBNamespaceListResult()
-
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<SBNamespaceInner>value()Get the value property: Result of the List Namespace operation.SBNamespaceListResultwithNextLink(String nextLink)Set the nextLink property: Link to the next set of results.SBNamespaceListResultwithValue(List<SBNamespaceInner> value)Set the value property: Result of the List Namespace operation.
-
-
-
Method Detail
-
value
public List<SBNamespaceInner> value()
Get the value property: Result of the List Namespace operation.- Returns:
- the value value.
-
withValue
public SBNamespaceListResult withValue(List<SBNamespaceInner> value)
Set the value property: Result of the List Namespace operation.- Parameters:
value- the value value to set.- Returns:
- the SBNamespaceListResult 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 Namespaces.- Returns:
- the nextLink value.
-
withNextLink
public SBNamespaceListResult withNextLink(String nextLink)
Set the nextLink property: Link to the next set of results. Not empty if Value contains incomplete list of Namespaces.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the SBNamespaceListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-