public class ListResponse<T> extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
ENUMERATION_RESULTS |
protected String |
marker
Stores the marker.
|
protected Integer |
maxResults
Stores the max results.
|
protected String |
nextMarker
Stores the next marker.
|
protected String |
prefix
Stores the prefix.
|
protected ArrayList<T> |
results
Holds the ArrayList
|
| Constructor and Description |
|---|
ListResponse() |
| Modifier and Type | Method and Description |
|---|---|
String |
getMarker()
Gets the marker.
|
Integer |
getMaxResults()
Gets the max results.
|
String |
getNextMarker()
Gets the next marker.
|
String |
getPrefix()
Gets the prefix.
|
ArrayList<T> |
getResults()
Gets the ArrayList
|
void |
setMarker(String marker)
Sets the marker.
|
void |
setMaxResults(Integer maxResults)
Sets the max results.
|
void |
setNextMarker(String nextMarker)
Sets the next marker.
|
void |
setPrefix(String prefix)
Sets the prefix.
|
void |
setResults(ArrayList<T> results)
Sets the ArrayList
|
public static final String ENUMERATION_RESULTS
protected String marker
protected Integer maxResults
protected String nextMarker
protected String prefix
public ArrayList<T> getResults()
public String getMarker()
public Integer getMaxResults()
public String getNextMarker()
public String getPrefix()
public void setResults(ArrayList<T> results)
results - the results to setpublic void setMarker(String marker)
marker - the marker to setpublic void setMaxResults(Integer maxResults)
maxResults - the maxResults to setpublic void setNextMarker(String nextMarker)
nextMarker - the nextMarker to setpublic void setPrefix(String prefix)
prefix - the prefix to set/**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/