Package org.apache.qpid.server.store

Examples of org.apache.qpid.server.store.FileBasedSettings


    private String _storeLocation;

    @Override
    protected void doOpen(final ConfiguredObject<?> parent)
    {
        final FileBasedSettings settings = (FileBasedSettings)parent;
        _storeLocation = settings.getStorePath();

        _connectionURL = DerbyUtils.createConnectionUrl(parent.getName(), _storeLocation);
    }
View Full Code Here


{
    @SuppressWarnings("unchecked")
    @Override
    public EnvironmentFacade createEnvironmentFacade(final ConfiguredObject<?> parent)
    {
        final FileBasedSettings settings = (FileBasedSettings)parent;
        final String storeLocation = settings.getStorePath();

        StandardEnvironmentConfiguration sec = new StandardEnvironmentConfiguration()
        {
            @Override
            public String getName()
View Full Code Here

    }

    @Override
    public void onDelete(ConfiguredObject<?> parent)
    {
        FileBasedSettings fileBasedSettings = (FileBasedSettings)parent;
        String storePath = fileBasedSettings.getStorePath();

        if (storePath != null)
        {
            if (LOGGER.isDebugEnabled())
            {
View Full Code Here

    }

    @Override
    public void onDelete(ConfiguredObject<?> parent)
    {
        FileBasedSettings fileBasedSettings = (FileBasedSettings)parent;
        String storePath = fileBasedSettings.getStorePath();

        if (storePath != null)
        {
            if (LOGGER.isDebugEnabled())
            {
View Full Code Here

        if (isMessageStoreOpen())
        {
            throw new IllegalStateException("Cannot delete the store as the provided message store is still open");
        }

        FileBasedSettings fileBasedSettings = (FileBasedSettings)parent;
        String storePath = fileBasedSettings.getStorePath();

        if (storePath != null)
        {
            if (LOGGER.isDebugEnabled())
            {
View Full Code Here

TOP

Related Classes of org.apache.qpid.server.store.FileBasedSettings

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.