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

Implements 4shared.com service

This commit is contained in:
2012-01-20 00:42:10 -02:00
parent cd2b479b5b
commit 95b549da2c
73 changed files with 7397 additions and 217 deletions

View File

@@ -16,16 +16,16 @@
* specific language governing permissions and limitations
* under the License.
*/
package com.rogiel.httpchannel.filesonic;
package com.rogiel.httpchannel.service.filesonic;
import java.io.IOException;
import java.net.URI;
import javax.xml.bind.JAXB;
import com.rogiel.httpchannel.filesonic.xml.FSAPI;
import com.rogiel.httpchannel.filesonic.xml.FSGetUploadURL;
import com.rogiel.httpchannel.filesonic.xml.FSUpload;
import com.rogiel.httpchannel.service.filesonic.xml.FSAPI;
import com.rogiel.httpchannel.service.filesonic.xml.FSGetUploadURL;
import com.rogiel.httpchannel.service.filesonic.xml.FSUpload;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>

View File

@@ -16,14 +16,13 @@
* specific language governing permissions and limitations
* under the License.
*/
package com.rogiel.httpchannel.service.impl;
package com.rogiel.httpchannel.service.filesonic;
import java.io.IOException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.regex.Pattern;
import com.rogiel.httpchannel.filesonic.FileSonicAPI;
import com.rogiel.httpchannel.service.AbstractAuthenticator;
import com.rogiel.httpchannel.service.AbstractHttpService;
import com.rogiel.httpchannel.service.AbstractUploader;

View File

@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package com.rogiel.httpchannel.filesonic.xml;
package com.rogiel.httpchannel.service.filesonic.xml;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>

View File

@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package com.rogiel.httpchannel.filesonic.xml;
package com.rogiel.httpchannel.service.filesonic.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;

View File

@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package com.rogiel.httpchannel.filesonic.xml;
package com.rogiel.httpchannel.service.filesonic.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;

View File

@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package com.rogiel.httpchannel.filesonic.xml;
package com.rogiel.httpchannel.service.filesonic.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;

View File

@@ -1 +1 @@
com.rogiel.httpchannel.service.impl.FileSonicService
com.rogiel.httpchannel.service.filesonic.FileSonicService