All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.internal.SearchAliasImpl Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * DISCLAIMER
 *
 * Copyright 2018 ArangoDB GmbH, Cologne, Germany
 *
 * 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.
 *
 * Copyright holder is ArangoDB GmbH, Cologne, Germany
 */

package com.arangodb.internal;

import com.arangodb.ArangoDBException;
import com.arangodb.SearchAlias;
import com.arangodb.entity.ViewEntity;
import com.arangodb.entity.arangosearch.SearchAliasPropertiesEntity;
import com.arangodb.model.arangosearch.SearchAliasCreateOptions;
import com.arangodb.model.arangosearch.SearchAliasPropertiesOptions;

/**
 * @author Michele Rastelli
 */
public class SearchAliasImpl extends InternalSearchAlias
        implements SearchAlias {

    protected SearchAliasImpl(final ArangoDatabaseImpl db, final String name) {
        super(db, name);
    }

    @Override
    public boolean exists() {
        try {
            getInfo();
            return true;
        } catch (final ArangoDBException e) {
            if (ArangoErrors.ERROR_ARANGO_DATA_SOURCE_NOT_FOUND.equals(e.getErrorNum())) {
                return false;
            }
            throw e;
        }
    }

    @Override
    public void drop() {
        executor.execute(dropRequest(), Void.class);
    }

    @Override
    public ViewEntity rename(final String newName) {
        return executor.execute(renameRequest(newName), ViewEntity.class);
    }

    @Override
    public ViewEntity getInfo() {
        return executor.execute(getInfoRequest(), ViewEntity.class);
    }

    @Override
    public ViewEntity create() {
        return create(new SearchAliasCreateOptions());
    }

    @Override
    public ViewEntity create(final SearchAliasCreateOptions options) {
        return db().createSearchAlias(name(), options);
    }

    @Override
    public SearchAliasPropertiesEntity getProperties() {
        return executor.execute(getPropertiesRequest(), SearchAliasPropertiesEntity.class);
    }

    @Override
    public SearchAliasPropertiesEntity updateProperties(final SearchAliasPropertiesOptions options) {
        return executor.execute(updatePropertiesRequest(options), SearchAliasPropertiesEntity.class);
    }

    @Override
    public SearchAliasPropertiesEntity replaceProperties(final SearchAliasPropertiesOptions options) {
        return executor.execute(replacePropertiesRequest(options), SearchAliasPropertiesEntity.class);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy