com.github.kklisura.cdt.protocol.commands.IndexedDB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdt-java-client Show documentation
Show all versions of cdt-java-client Show documentation
Chrome DevTools java client
package com.github.kklisura.cdt.protocol.commands;
/*-
* #%L
* cdt-java-client
* %%
* Copyright (C) 2018 - 2019 Kenan Klisura
* %%
* 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.
* #L%
*/
import com.github.kklisura.cdt.protocol.support.annotations.Experimental;
import com.github.kklisura.cdt.protocol.support.annotations.Optional;
import com.github.kklisura.cdt.protocol.support.annotations.ParamName;
import com.github.kklisura.cdt.protocol.support.annotations.ReturnTypeParameter;
import com.github.kklisura.cdt.protocol.support.annotations.Returns;
import com.github.kklisura.cdt.protocol.types.indexeddb.DatabaseWithObjectStores;
import com.github.kklisura.cdt.protocol.types.indexeddb.KeyRange;
import com.github.kklisura.cdt.protocol.types.indexeddb.Metadata;
import com.github.kklisura.cdt.protocol.types.indexeddb.RequestData;
import java.util.List;
@Experimental
public interface IndexedDB {
/**
* Clears all entries from an object store.
*
* @param securityOrigin Security origin.
* @param databaseName Database name.
* @param objectStoreName Object store name.
*/
void clearObjectStore(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName,
@ParamName("objectStoreName") String objectStoreName);
/**
* Deletes a database.
*
* @param securityOrigin Security origin.
* @param databaseName Database name.
*/
void deleteDatabase(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName);
/**
* Delete a range of entries from an object store
*
* @param securityOrigin
* @param databaseName
* @param objectStoreName
* @param keyRange Range of entry keys to delete
*/
void deleteObjectStoreEntries(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName,
@ParamName("objectStoreName") String objectStoreName,
@ParamName("keyRange") KeyRange keyRange);
/** Disables events from backend. */
void disable();
/** Enables events from backend. */
void enable();
/**
* Requests data from object store or index.
*
* @param securityOrigin Security origin.
* @param databaseName Database name.
* @param objectStoreName Object store name.
* @param indexName Index name, empty string for object store data requests.
* @param skipCount Number of records to skip.
* @param pageSize Number of records to fetch.
*/
RequestData requestData(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName,
@ParamName("objectStoreName") String objectStoreName,
@ParamName("indexName") String indexName,
@ParamName("skipCount") Integer skipCount,
@ParamName("pageSize") Integer pageSize);
/**
* Requests data from object store or index.
*
* @param securityOrigin Security origin.
* @param databaseName Database name.
* @param objectStoreName Object store name.
* @param indexName Index name, empty string for object store data requests.
* @param skipCount Number of records to skip.
* @param pageSize Number of records to fetch.
* @param keyRange Key range.
*/
RequestData requestData(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName,
@ParamName("objectStoreName") String objectStoreName,
@ParamName("indexName") String indexName,
@ParamName("skipCount") Integer skipCount,
@ParamName("pageSize") Integer pageSize,
@Optional @ParamName("keyRange") KeyRange keyRange);
/**
* Gets metadata of an object store
*
* @param securityOrigin Security origin.
* @param databaseName Database name.
* @param objectStoreName Object store name.
*/
Metadata getMetadata(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName,
@ParamName("objectStoreName") String objectStoreName);
/**
* Requests database with given name in given frame.
*
* @param securityOrigin Security origin.
* @param databaseName Database name.
*/
@Returns("databaseWithObjectStores")
DatabaseWithObjectStores requestDatabase(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName);
/**
* Requests database names for given security origin.
*
* @param securityOrigin Security origin.
*/
@Returns("databaseNames")
@ReturnTypeParameter(String.class)
List requestDatabaseNames(@ParamName("securityOrigin") String securityOrigin);
}