io.camunda.migration.process.adapter.MigrationRepositoryIndex Maven / Gradle / Ivy
The newest version!
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Camunda License 1.0. You may not use this file
* except in compliance with the Camunda License 1.0.
*/
package io.camunda.migration.process.adapter;
import io.camunda.webapps.schema.descriptors.operate.OperateIndexDescriptor;
/* Fork of Operate's MigrationRepositoryIndex descriptor for correct prefixing */
public class MigrationRepositoryIndex extends OperateIndexDescriptor {
public static final String INDEX_NAME = "migration-steps-repository";
public static final String VERSION = "1.1.0";
public static final String TYPE = "@type";
public static final String ID = "_id";
public MigrationRepositoryIndex(final String indexPrefix, final boolean isElasticsearch) {
super(indexPrefix, isElasticsearch);
}
@Override
public String getIndexName() {
return INDEX_NAME;
}
@Override
public String getVersion() {
return VERSION;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy