forked from deegree/deegree3
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deegree#1654 - fixed imports, added isDebugEnabled
- Loading branch information
Showing
7 changed files
with
43 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,11 +33,27 @@ | |
e-mail: [email protected] | ||
----------------------------------------------------------------------------*/ | ||
package org.deegree.console.datastore.feature; | ||
import static jakarta.faces.application.FacesMessage.SEVERITY_ERROR; | ||
import static org.apache.commons.io.FileUtils.readFileToByteArray; | ||
import static org.deegree.feature.types.property.GeometryPropertyType.CoordinateDimension.DIM_2; | ||
|
||
import java.io.File; | ||
import java.io.FileOutputStream; | ||
import java.io.IOException; | ||
import java.lang.reflect.InvocationTargetException; | ||
import java.net.URL; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.SortedSet; | ||
import java.util.TreeSet; | ||
|
||
import jakarta.enterprise.context.SessionScoped; | ||
import jakarta.faces.application.FacesMessage; | ||
import jakarta.faces.context.ExternalContext; | ||
import jakarta.faces.context.FacesContext; | ||
import javax.xml.stream.XMLOutputFactory; | ||
import javax.xml.stream.XMLStreamWriter; | ||
|
||
import jakarta.inject.Named; | ||
import org.apache.commons.io.IOUtils; | ||
import org.deegree.client.core.utils.SQLExecution; | ||
|
@@ -74,22 +90,7 @@ | |
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import javax.xml.stream.XMLOutputFactory; | ||
import javax.xml.stream.XMLStreamWriter; | ||
import java.io.File; | ||
import java.io.FileOutputStream; | ||
import java.io.IOException; | ||
import java.io.Serializable; | ||
import java.lang.reflect.InvocationTargetException; | ||
import java.net.URL; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.SortedSet; | ||
import java.util.TreeSet; | ||
|
||
import static jakarta.faces.application.FacesMessage.SEVERITY_ERROR; | ||
import static org.apache.commons.io.FileUtils.readFileToByteArray; | ||
import static org.deegree.feature.types.property.GeometryPropertyType.CoordinateDimension.DIM_2; | ||
|
||
/** | ||
* JSF bean that helps with creating configurations for the {@link SQLFeatureStore}. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,13 @@ | |
----------------------------------------------------------------------------*/ | ||
package org.deegree.console.proxy; | ||
|
||
import java.io.IOException; | ||
import java.io.Serializable; | ||
|
||
import jakarta.enterprise.context.RequestScoped; | ||
import jakarta.inject.Named; | ||
import org.deegree.commons.proxy.ProxySettings; | ||
|
||
import java.io.IOException; | ||
import java.io.Serializable; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Andreas Schmitz</a> | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters