1 /*********************************************************************** 2 * Copyright (c) 2013-2025 General Atomics Integrated Intelligence, Inc. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Apache License, Version 2.0 5 * which accompanies this distribution and is available at 6 * https://www.apache.org/licenses/LICENSE-2.0 7 ***********************************************************************/ 8 9 package org.locationtech.geomesa.redis.tools.schema 10 11 import org.locationtech.geomesa.redis.data.RedisDataStore 12 import org.locationtech.geomesa.redis.tools.RedisDataStoreCommand 13 import org.locationtech.geomesa.redis.tools.RedisDataStoreCommand.RedisDataStoreParams 14 import org.locationtech.geomesa.redis.tools.schema.RedisDeleteCatalogCommand.RedisDeleteCatalogParams 15 import org.locationtech.geomesa.tools.data.{DeleteCatalogCommand, DeleteCatalogParams} 16 17 class RedisDeleteCatalogCommand extends DeleteCatalogCommand[RedisDataStore] with RedisDataStoreCommand { 18 override val params = new RedisDeleteCatalogParams 19 } 20 21 object RedisDeleteCatalogCommand { 22 class RedisDeleteCatalogParams extends DeleteCatalogParams with RedisDataStoreParams 23 }
| Line | Stmt Id | Pos | Tree | Symbol | Tests | Code |
|---|---|---|---|---|---|---|
| 18 | 99916 | 1052 - 1080 | Apply | org.locationtech.geomesa.redis.tools.schema.RedisDeleteCatalogCommand.RedisDeleteCatalogParams.<init> | new org.locationtech.geomesa.redis.tools.schema.RedisDeleteCatalogCommand.RedisDeleteCatalogParams() |