Skip to content

Commit

Permalink
Moving file based session property manager classes to a separate package
Browse files Browse the repository at this point in the history
  • Loading branch information
phd3 authored and electrum committed Sep 27, 2019
1 parent 90fbe03 commit f870e5c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

import com.google.common.collect.ImmutableList;
import io.prestosql.plugin.session.db.DbSessionPropertyManagerFactory;
import io.prestosql.plugin.session.file.FileSessionPropertyManagerFactory;
import io.prestosql.spi.Plugin;
import io.prestosql.spi.session.SessionPropertyConfigurationManagerFactory;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prestosql.plugin.session;
package io.prestosql.plugin.session.file;

import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException;
import com.google.common.collect.ImmutableMap;
import io.airlift.json.JsonCodec;
import io.airlift.json.JsonCodecFactory;
import io.airlift.json.ObjectMapperProvider;
import io.prestosql.plugin.session.SessionMatchSpec;
import io.prestosql.spi.session.SessionConfigurationContext;
import io.prestosql.spi.session.SessionPropertyConfigurationManager;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prestosql.plugin.session;
package io.prestosql.plugin.session.file;

import io.airlift.configuration.Config;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prestosql.plugin.session;
package io.prestosql.plugin.session.file;

import com.google.inject.Injector;
import io.airlift.bootstrap.Bootstrap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prestosql.plugin.session;
package io.prestosql.plugin.session.file;

import com.google.inject.Binder;
import com.google.inject.Module;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
* limitations under the License.
*/

package io.prestosql.plugin.session;
package io.prestosql.plugin.session.file;

import io.airlift.testing.TempFile;
import io.prestosql.plugin.session.AbstractTestSessionPropertyManager;
import io.prestosql.plugin.session.SessionMatchSpec;
import io.prestosql.spi.session.SessionPropertyConfigurationManager;

import java.io.IOException;
Expand All @@ -23,7 +25,7 @@
import java.util.Arrays;
import java.util.Map;

import static io.prestosql.plugin.session.FileSessionPropertyManager.CODEC;
import static io.prestosql.plugin.session.file.FileSessionPropertyManager.CODEC;
import static org.testng.Assert.assertEquals;

public class TestFileSessionPropertyManager
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prestosql.plugin.session;
package io.prestosql.plugin.session.file;

import com.google.common.collect.ImmutableMap;
import org.testng.annotations.Test;
Expand Down

0 comments on commit f870e5c

Please sign in to comment.