1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-06 07:32:50 +00:00

Fixed wrong package name

This commit is contained in:
2011-09-07 21:52:05 -03:00
parent 794efb6ced
commit 5b826129e7
16 changed files with 33 additions and 29 deletions

View File

@@ -19,8 +19,8 @@ package com.rogiel.httpchannel.service;
import java.io.IOException; import java.io.IOException;
import com.rogiel.httpchannel.service.DownloadListener.TimerWaitReason; import com.rogiel.httpchannel.service.DownloadListener.TimerWaitReason;
import com.rogiel.httpchannel.util.ThreadUtils;
import net.sf.f2s.util.ThreadUtils;
/** /**
* @author rogiel * @author rogiel

View File

@@ -21,12 +21,12 @@ import java.io.OutputStream;
import java.nio.channels.Channels; import java.nio.channels.Channels;
import java.nio.channels.WritableByteChannel; import java.nio.channels.WritableByteChannel;
import net.sf.f2s.util.ThreadUtils;
import org.apache.http.entity.mime.content.AbstractContentBody; import org.apache.http.entity.mime.content.AbstractContentBody;
import org.apache.http.entity.mime.content.ContentBody; import org.apache.http.entity.mime.content.ContentBody;
import com.rogiel.httpchannel.service.channel.LinkedUploadChannel; import com.rogiel.httpchannel.service.channel.LinkedUploadChannel;
import com.rogiel.httpchannel.util.ThreadUtils;
/** /**
* {@link ContentBody} used to upload files in {@link Uploader} implementations. * {@link ContentBody} used to upload files in {@link Uploader} implementations.

View File

@@ -18,7 +18,8 @@ package com.rogiel.httpchannel.service.config;
import java.lang.reflect.Proxy; import java.lang.reflect.Proxy;
import net.sf.f2s.util.transformer.Transformer; import com.rogiel.httpchannel.util.transformer.Transformer;
/** /**
* This is an flag interface to indicate that an certain Interface is the * This is an flag interface to indicate that an certain Interface is the

View File

@@ -25,7 +25,8 @@ import java.lang.reflect.Method;
import java.lang.reflect.Proxy; import java.lang.reflect.Proxy;
import java.util.Properties; import java.util.Properties;
import net.sf.f2s.util.transformer.TransformerFactory; import com.rogiel.httpchannel.util.transformer.TransformerFactory;
/** /**
* Helper class for {@link ServiceConfiguration} system. * Helper class for {@link ServiceConfiguration} system.

View File

@@ -22,9 +22,6 @@ import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future; import java.util.concurrent.Future;
import java.util.regex.Pattern; import java.util.regex.Pattern;
import net.sf.f2s.util.HttpClientUtils;
import net.sf.f2s.util.PatternUtils;
import net.sf.f2s.util.ThreadUtils;
import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils; import org.apache.commons.io.IOUtils;
@@ -62,6 +59,9 @@ import com.rogiel.httpchannel.service.channel.LinkedUploadChannel.LinkedUploadCh
import com.rogiel.httpchannel.service.config.ServiceConfiguration; import com.rogiel.httpchannel.service.config.ServiceConfiguration;
import com.rogiel.httpchannel.service.config.ServiceConfigurationProperty; import com.rogiel.httpchannel.service.config.ServiceConfigurationProperty;
import com.rogiel.httpchannel.service.impl.MegaUploadService.MegaUploadServiceConfiguration; import com.rogiel.httpchannel.service.impl.MegaUploadService.MegaUploadServiceConfiguration;
import com.rogiel.httpchannel.util.HttpClientUtils;
import com.rogiel.httpchannel.util.PatternUtils;
import com.rogiel.httpchannel.util.ThreadUtils;
/** /**
* This service handles login, upload and download to MegaUpload.com. * This service handles login, upload and download to MegaUpload.com.

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util; package com.rogiel.httpchannel.util;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util; package com.rogiel.httpchannel.util;
import java.util.regex.Matcher; import java.util.regex.Matcher;
import java.util.regex.Pattern; import java.util.regex.Pattern;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util; package com.rogiel.httpchannel.util;
/** /**
* @author Rogiel * @author Rogiel

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer; package com.rogiel.httpchannel.util.transformer;
/** /**
* @author Rogiel * @author Rogiel

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer; package com.rogiel.httpchannel.util.transformer;
/** /**
* @author rogiel * @author rogiel

View File

@@ -14,15 +14,16 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer; package com.rogiel.httpchannel.util.transformer;
import java.net.URL; import java.net.URL;
import net.sf.f2s.util.transformer.impl.BooleanTransformer; import com.rogiel.httpchannel.util.transformer.impl.BooleanTransformer;
import net.sf.f2s.util.transformer.impl.IntegerTransformer; import com.rogiel.httpchannel.util.transformer.impl.IntegerTransformer;
import net.sf.f2s.util.transformer.impl.LongTransformer; import com.rogiel.httpchannel.util.transformer.impl.LongTransformer;
import net.sf.f2s.util.transformer.impl.StringTransformer; import com.rogiel.httpchannel.util.transformer.impl.StringTransformer;
import net.sf.f2s.util.transformer.impl.URLTransformer; import com.rogiel.httpchannel.util.transformer.impl.URLTransformer;
/** /**
* @author Rogiel * @author Rogiel

View File

@@ -14,9 +14,9 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer.impl; package com.rogiel.httpchannel.util.transformer.impl;
import net.sf.f2s.util.transformer.Transformer; import com.rogiel.httpchannel.util.transformer.Transformer;
/** /**
* @author rogiel * @author rogiel

View File

@@ -14,9 +14,9 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer.impl; package com.rogiel.httpchannel.util.transformer.impl;
import net.sf.f2s.util.transformer.Transformer; import com.rogiel.httpchannel.util.transformer.Transformer;
/** /**
* @author rogiel * @author rogiel

View File

@@ -14,9 +14,9 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer.impl; package com.rogiel.httpchannel.util.transformer.impl;
import net.sf.f2s.util.transformer.Transformer; import com.rogiel.httpchannel.util.transformer.Transformer;
/** /**
* @author rogiel * @author rogiel

View File

@@ -14,9 +14,9 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer.impl; package com.rogiel.httpchannel.util.transformer.impl;
import net.sf.f2s.util.transformer.Transformer; import com.rogiel.httpchannel.util.transformer.Transformer;
/** /**
* @author rogiel * @author rogiel

View File

@@ -14,13 +14,14 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with seedbox. If not, see <http://www.gnu.org/licenses/>. * along with seedbox. If not, see <http://www.gnu.org/licenses/>.
*/ */
package net.sf.f2s.util.transformer.impl; package com.rogiel.httpchannel.util.transformer.impl;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
import net.sf.f2s.util.transformer.TransformationException; import com.rogiel.httpchannel.util.transformer.TransformationException;
import net.sf.f2s.util.transformer.Transformer; import com.rogiel.httpchannel.util.transformer.Transformer;
/** /**
* @author rogiel * @author rogiel