// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights // reserved. Use of this source code is governed by a BSD-style license that // can be found in the LICENSE file. package org.cef.network; import org.cef.callback.CefNative; import org.cef.handler.CefLoadHandler.ErrorCode; import java.util.Map; class CefResponse_N extends CefResponse implements CefNative { // Used internally to store a pointer to the CEF object. private long N_CefHandle = 0; @Override public void setNativeRef(String identifer, long nativeRef) { N_CefHandle = nativeRef; } @Override public long getNativeRef(String identifer) { return N_CefHandle; } CefResponse_N() { super(); } public static CefResponse createNative() { try { return CefResponse_N.N_Create(); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); return null; } } @Override public void dispose() { try { N_Dispose(N_CefHandle); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public boolean isReadOnly() { try { return N_IsReadOnly(N_CefHandle); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } return false; } @Override public ErrorCode getError() { try { return N_GetError(N_CefHandle); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } return null; } @Override public void setError(ErrorCode errorCode) { try { N_SetError(N_CefHandle, errorCode); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public int getStatus() { try { return N_GetStatus(N_CefHandle); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } return 0; } @Override public void setStatus(int status) { try { N_SetStatus(N_CefHandle, status); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public String getStatusText() { try { return N_GetStatusText(N_CefHandle); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } return null; } @Override public void setStatusText(String statusText) { try { N_SetStatusText(N_CefHandle, statusText); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public String getMimeType() { try { return N_GetMimeType(N_CefHandle); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } return null; } @Override public void setMimeType(String mimeType) { try { N_SetMimeType(N_CefHandle, mimeType); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public String getHeaderByName(String name) { try { return N_GetHeaderByName(N_CefHandle, name); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } return null; } @Override public void setHeaderByName(String name, String value, boolean overwrite) { try { N_SetHeaderByName(N_CefHandle, name, value, overwrite); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public void getHeaderMap(Map headerMap) { try { N_GetHeaderMap(N_CefHandle, headerMap); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } @Override public void setHeaderMap(Map headerMap) { try { N_SetHeaderMap(N_CefHandle, headerMap); } catch (UnsatisfiedLinkError ule) { ule.printStackTrace(); } } private final native static CefResponse_N N_Create(); private final native void N_Dispose(long self); private final native boolean N_IsReadOnly(long self); private final native ErrorCode N_GetError(long self); private final native void N_SetError(long self, ErrorCode errorCode); private final native int N_GetStatus(long self); private final native void N_SetStatus(long self, int status); private final native String N_GetStatusText(long self); private final native void N_SetStatusText(long self, String statusText); private final native String N_GetMimeType(long self); private final native void N_SetMimeType(long self, String mimeType); private final native String N_GetHeaderByName(long self, String name); private final native void N_SetHeaderByName( long self, String name, String value, boolean overwrite); private final native void N_GetHeaderMap(long self, Map headerMap); private final native void N_SetHeaderMap(long self, Map headerMap); }