mirror of
https://github.com/Rogiel/httpchannel
synced 2025-12-05 23:22:51 +00:00
Fixed wrong package name
This commit is contained in:
@@ -19,8 +19,8 @@ package com.rogiel.httpchannel.service;
|
||||
import java.io.IOException;
|
||||
|
||||
import com.rogiel.httpchannel.service.DownloadListener.TimerWaitReason;
|
||||
import com.rogiel.httpchannel.util.ThreadUtils;
|
||||
|
||||
import net.sf.f2s.util.ThreadUtils;
|
||||
|
||||
/**
|
||||
* @author rogiel
|
||||
|
||||
@@ -21,12 +21,12 @@ import java.io.OutputStream;
|
||||
import java.nio.channels.Channels;
|
||||
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.ContentBody;
|
||||
|
||||
import com.rogiel.httpchannel.service.channel.LinkedUploadChannel;
|
||||
import com.rogiel.httpchannel.util.ThreadUtils;
|
||||
|
||||
/**
|
||||
* {@link ContentBody} used to upload files in {@link Uploader} implementations.
|
||||
|
||||
@@ -18,7 +18,8 @@ package com.rogiel.httpchannel.service.config;
|
||||
|
||||
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
|
||||
|
||||
@@ -25,7 +25,8 @@ import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Proxy;
|
||||
import java.util.Properties;
|
||||
|
||||
import net.sf.f2s.util.transformer.TransformerFactory;
|
||||
import com.rogiel.httpchannel.util.transformer.TransformerFactory;
|
||||
|
||||
|
||||
/**
|
||||
* Helper class for {@link ServiceConfiguration} system.
|
||||
|
||||
@@ -22,9 +22,6 @@ import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.Future;
|
||||
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.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.ServiceConfigurationProperty;
|
||||
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.
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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.InputStream;
|
||||
@@ -14,7 +14,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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.Pattern;
|
||||
@@ -14,7 +14,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with seedbox. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package net.sf.f2s.util;
|
||||
package com.rogiel.httpchannel.util;
|
||||
|
||||
/**
|
||||
* @author Rogiel
|
||||
@@ -14,7 +14,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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
|
||||
@@ -14,7 +14,7 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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
|
||||
@@ -14,15 +14,16 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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 net.sf.f2s.util.transformer.impl.BooleanTransformer;
|
||||
import net.sf.f2s.util.transformer.impl.IntegerTransformer;
|
||||
import net.sf.f2s.util.transformer.impl.LongTransformer;
|
||||
import net.sf.f2s.util.transformer.impl.StringTransformer;
|
||||
import net.sf.f2s.util.transformer.impl.URLTransformer;
|
||||
import com.rogiel.httpchannel.util.transformer.impl.BooleanTransformer;
|
||||
import com.rogiel.httpchannel.util.transformer.impl.IntegerTransformer;
|
||||
import com.rogiel.httpchannel.util.transformer.impl.LongTransformer;
|
||||
import com.rogiel.httpchannel.util.transformer.impl.StringTransformer;
|
||||
import com.rogiel.httpchannel.util.transformer.impl.URLTransformer;
|
||||
|
||||
|
||||
/**
|
||||
* @author Rogiel
|
||||
@@ -14,9 +14,9 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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
|
||||
@@ -14,9 +14,9 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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
|
||||
@@ -14,9 +14,9 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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
|
||||
@@ -14,9 +14,9 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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
|
||||
@@ -14,13 +14,14 @@
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* 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.URL;
|
||||
|
||||
import net.sf.f2s.util.transformer.TransformationException;
|
||||
import net.sf.f2s.util.transformer.Transformer;
|
||||
import com.rogiel.httpchannel.util.transformer.TransformationException;
|
||||
import com.rogiel.httpchannel.util.transformer.Transformer;
|
||||
|
||||
|
||||
/**
|
||||
* @author rogiel
|
||||
Reference in New Issue
Block a user