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

org.wisdom.api.model.Repository Maven / Gradle / Ivy

The newest version!
/*
 * #%L
 * Wisdom-Framework
 * %%
 * Copyright (C) 2013 - 2014 Wisdom Framework
 * %%
 * 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%
 */
package org.wisdom.api.model;

import java.util.Collection;

/**
 * Service representing a repository, i.e.  a persistent technology. For instance, each Ebean server is a repository
 * of type "ebean", while MongoJack is another repository.
 *
 * Providers must register the 'repository.name' and 'repository.type' properties with their service registration.
 *
 * @param  the type of repository
 */
public interface Repository {

    /**
     * The service property that must be published to indicate the repository name.
     */
    public static final String REPOSITORY_NAME_PROPERTY = "repository.name";

    /**
     * The service property that must be published to indicate the repository type.
     */
    public static final String REPOSITORY_TYPE_PROPERTY = "repository.type";

    /**
     * Gets all Crud Service managed by the current repository. This allow retrieving the set of entity class managed
     * by the current repository.
     * @return the set of Curd service, empty if none.
     */
    Collection> getCrudServices();

    /**
     * The name of the repository.
     * @return the current repository name
     */
    String getName();

    /**
     * The type of repository, generally the technology name.
     * @return the type of repository
     */
    String getType();

    /**
     * The class of the technical object represented by this repository. For instance, in the Ebean case,
     * it would be 'com.avaje.ebean.EbeanServer', while for MongoJack it would be 'org.mongojack.JacksonDBCollection'
     * @return the class of the repository
     */
    Class getRepositoryClass();

    /**
     * The technical object represented by this repository.
     * @return the current repository
     */
    T get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy