[Rename] modules/ingest-user-agent (#204)
[Rename] modules/ingest-user-agent Refactor ingest-user-agent module as part of the Elasticsearch to OpenSearch renaming. Signed-off-by: Rabi Panda <adnapibar@gmail.com>
This commit is contained in:
parent
595bddaac1
commit
aa82008ae7
|
@ -16,11 +16,11 @@
|
|||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'opensearch.yaml-rest-test'
|
||||
|
||||
esplugin {
|
||||
description 'Ingest processor that extracts information from a user agent'
|
||||
classname 'org.elasticsearch.ingest.useragent.IngestUserAgentPlugin'
|
||||
classname 'org.opensearch.ingest.useragent.IngestUserAgentPlugin'
|
||||
}
|
||||
|
||||
restResources {
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import org.elasticsearch.common.settings.Setting;
|
||||
import org.elasticsearch.ingest.Processor;
|
|
@ -17,11 +17,11 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import org.elasticsearch.common.cache.Cache;
|
||||
import org.elasticsearch.common.cache.CacheBuilder;
|
||||
import org.elasticsearch.ingest.useragent.UserAgentParser.Details;
|
||||
import org.opensearch.ingest.useragent.UserAgentParser.Details;
|
||||
|
||||
import java.util.Objects;
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import org.elasticsearch.OpenSearchParseException;
|
||||
import org.elasticsearch.common.xcontent.LoggingDeprecationHandler;
|
|
@ -17,14 +17,14 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import org.elasticsearch.common.logging.DeprecationLogger;
|
||||
import org.elasticsearch.ingest.AbstractProcessor;
|
||||
import org.elasticsearch.ingest.IngestDocument;
|
||||
import org.elasticsearch.ingest.Processor;
|
||||
import org.elasticsearch.ingest.useragent.UserAgentParser.Details;
|
||||
import org.elasticsearch.ingest.useragent.UserAgentParser.VersionedName;
|
||||
import org.opensearch.ingest.useragent.UserAgentParser.Details;
|
||||
import org.opensearch.ingest.useragent.UserAgentParser.VersionedName;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
import java.util.Arrays;
|
|
@ -17,7 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import org.elasticsearch.OpenSearchParseException;
|
||||
import org.elasticsearch.common.Strings;
|
|
@ -17,7 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import org.elasticsearch.ingest.RandomDocumentPicks;
|
||||
import org.elasticsearch.ingest.IngestDocument;
|
|
@ -17,7 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.ingest.useragent;
|
||||
package org.opensearch.ingest.useragent;
|
||||
|
||||
import com.carrotsearch.randomizedtesting.annotations.Name;
|
||||
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
|
Loading…
Reference in New Issue