com.github.testsmith.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
The newest version!
package com.github.testsmith.cdt.protocol.commands;
/*-
* #%L
* cdt-java-client
* %%
* Copyright (C) 2018 - 2024 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.testsmith.cdt.protocol.support.annotations.*;
import com.github.testsmith.cdt.protocol.types.indexeddb.DatabaseWithObjectStores;
import com.github.testsmith.cdt.protocol.types.indexeddb.KeyRange;
import com.github.testsmith.cdt.protocol.types.indexeddb.Metadata;
import com.github.testsmith.cdt.protocol.types.indexeddb.RequestData;
import java.util.List;
/**
* IndexedDB interface.
*
* @author roy
* @version $Id: $Id
*/
@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 a {@link java.lang.String} object
* @param databaseName a {@link java.lang.String} object
* @param objectStoreName a {@link java.lang.String} object
* @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.
* @return a {@link com.github.testsmith.cdt.protocol.types.indexeddb.RequestData} object
*/
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.
* @return a {@link com.github.testsmith.cdt.protocol.types.indexeddb.RequestData} object
*/
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.
* @return a {@link com.github.testsmith.cdt.protocol.types.indexeddb.Metadata} object
*/
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.
* @return a {@link com.github.testsmith.cdt.protocol.types.indexeddb.DatabaseWithObjectStores}
* object
*/
@Returns("databaseWithObjectStores")
DatabaseWithObjectStores requestDatabase(
@ParamName("securityOrigin") String securityOrigin,
@ParamName("databaseName") String databaseName);
/**
* Requests database names for given security origin.
*
* @param securityOrigin Security origin.
* @return a {@link java.util.List} object
*/
@Returns("databaseNames")
@ReturnTypeParameter(String.class)
List requestDatabaseNames(@ParamName("securityOrigin") String securityOrigin);
}