com.google.maps.ImageResult Maven / Gradle / Ivy
/*
* Copyright 2018 Google Inc. All rights reserved.
*
*
* 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 com.google.maps;
import com.google.maps.errors.ApiException;
import com.google.maps.internal.ApiResponse;
import java.io.Serializable;
/** {@code ImageResult} is the object returned from API end points that return images. */
public class ImageResult implements Serializable {
public ImageResult(String contentType, byte[] imageData) {
this.imageData = imageData;
this.contentType = contentType;
}
private static final long serialVersionUID = 1L;
/** The image data from the Photos API call. */
public final byte[] imageData;
/** The Content-Type header of the returned result. */
public final String contentType;
/**
* ImageResult.Response
is a type system hack to enable API endpoints to return a
* ImageResult
.
*/
public static class Response implements ApiResponse {
@Override
public boolean successful() {
return true;
}
@Override
public ApiException getError() {
return null;
}
@Override
public ImageResult getResult() {
return null;
}
}
}