Package org.lilyproject.repository.impl

Examples of org.lilyproject.repository.impl.RepoTableKey


    /**
     * @return null if it doesn't exist
     */
    public RepositoryDecoratorChain getRepositoryDecoratorChain(String repositoryName, String tableName) {
        return decoratoredRepositoryCache.get(new RepoTableKey(repositoryName, tableName));
    }
View Full Code Here


        when(avroLilyTransceiver.getLilyProxy()).thenReturn(avroLily);
        avroConverter = mock(AvroConverter.class);
        recordTable = mock(HTableInterface.class);

        RemoteTableManager tableMgr = new RemoteTableManager(repositoryName, avroLilyTransceiver, avroConverter);
        remoteRepository = new RemoteRepository(new RepoTableKey(repositoryName, Table.RECORD.name), avroLilyTransceiver,
                avroConverter, mock(RemoteRepositoryManager.class), mock(BlobManager.class), recordTable, recordTable,
                tableMgr, mock(RecordFactory.class));
    }
View Full Code Here

TOP

Related Classes of org.lilyproject.repository.impl.RepoTableKey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.