org.trustedanalytics.cloud.cc.api.Page Maven / Gradle / Ivy
/**
* Copyright (c) 2015 Intel 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.
*/
package org.trustedanalytics.cloud.cc.api;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collection;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Page {
@JsonProperty("total_results")
private int totalResults;
@JsonProperty("total_pages")
private int totalPages;
@JsonProperty("prev_url")
private String prevUrl;
@JsonProperty("next_url")
private String nextUrl;
@JsonProperty("resources")
private Collection resources;
public int getTotalResults() {
return totalResults;
}
public void setTotalResults(int totalResults) {
this.totalResults = totalResults;
}
public int getTotalPages() {
return totalPages;
}
public void setTotalPages(int totalPages) {
this.totalPages = totalPages;
}
public String getPrevUrl() {
return prevUrl;
}
public void setPrevUrl(String prevUrl) {
this.prevUrl = prevUrl;
}
public String getNextUrl() {
return nextUrl;
}
public void setNextUrl(String nextUrl) {
this.nextUrl = nextUrl;
}
public Collection getResources() {
return resources;
}
public void setResources(Collection resources) {
this.resources = resources;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy