Skip to content

Commit

Permalink
renamed OfficeManagerConfiguration to DefaultOfficeManagerConfigurati…
Browse files Browse the repository at this point in the history
…on and introduced ExternalOfficeManagerConfiguration

git-svn-id: http://jodconverter.googlecode.com/svn/trunk@120 e8ee3d98-163c-0410-9f04-db2354e518cf
  • Loading branch information
mirko.nasato committed May 17, 2009
1 parent f7cd0b5 commit 5770c25
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -8,8 +8,8 @@
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.artofsolving.jodconverter.OfficeDocumentConverter;
import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration;
import org.artofsolving.jodconverter.office.OfficeManager;
import org.artofsolving.jodconverter.office.OfficeManagerConfiguration;

public class WebappContext {

Expand Down Expand Up @@ -38,7 +38,7 @@ public WebappContext(ServletContext servletContext) {
logger.warning("max file upload size not set");
}

OfficeManagerConfiguration configuration = new OfficeManagerConfiguration();
DefaultOfficeManagerConfiguration configuration = new DefaultOfficeManagerConfiguration();
String officePortParam = servletContext.getInitParameter(PARAMETER_OFFICE_PORT);
if (officePortParam != null) {
configuration.setPortNumber(Integer.parseInt(officePortParam));
Expand Down

0 comments on commit 5770c25

Please sign in to comment.