Browse Source
remove `JsonProviderFactory`, the `JsonProvider` should be set via `Configuration`pull/49/head
kallestenflo
10 years ago
11 changed files with 31 additions and 78 deletions
@ -1,46 +0,0 @@
|
||||
/* |
||||
* Copyright 2011 the original author or authors. |
||||
* 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. |
||||
*/ |
||||
package com.jayway.jsonpath.spi.json; |
||||
|
||||
public abstract class JsonProviderFactory { |
||||
|
||||
private static JsonProvider provider = null; |
||||
|
||||
private static final String DEFAULT_JSON_PROVIDER = "com.jayway.jsonpath.internal.spi.json.JsonSmartJsonProvider"; |
||||
//private static final String DEFAULT_JSON_PROVIDER = "com.jayway.jsonpath.internal.spi.json.JacksonProvider";
|
||||
|
||||
|
||||
public static JsonProvider createProvider() { |
||||
|
||||
if(provider == null){ |
||||
synchronized (JsonProviderFactory.class){ |
||||
if(provider == null){ |
||||
try { |
||||
provider = (JsonProvider) Class.forName(DEFAULT_JSON_PROVIDER).newInstance(); |
||||
} catch (Exception e) { |
||||
throw new RuntimeException("Failed to create JsonProvider", e); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
return provider; |
||||
} |
||||
|
||||
public static synchronized void setProvider(JsonProvider jsonProvider) { |
||||
provider = jsonProvider; |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue