1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-05 23:22:51 +00:00

Implements ifile.it upload service

This commit is contained in:
2012-05-05 19:45:08 -03:00
parent 55cb79d599
commit d838636f2a
47 changed files with 366 additions and 26 deletions

View File

@@ -8,6 +8,9 @@
<relativePath>..</relativePath>
</parent>
<artifactId>httpchannel-api</artifactId>
<packaging>jar</packaging>
<name>HttpChannel/API</name>
<description>Module that defines the HttpChannel API. HttpChannels abstract complex download and upload steps into a simple and easy to use NIO Channel. NIO Channels can be wrapped into an InputStream or OutputStream and used in any way you may find possible to. Aside from that, Channels can be used natively in most next-gen libraries, meaning that you don't even need to wrap anything, just start writing or reading data to or from the channel wth a ByteBuffer.

View File

@@ -20,8 +20,8 @@ package com.rogiel.httpchannel.service.helper;
import com.rogiel.httpchannel.service.AuthenticationService;
import com.rogiel.httpchannel.service.Authenticator;
import com.rogiel.httpchannel.service.Authenticator.AuthenticatorConfiguration;
import com.rogiel.httpchannel.service.Credential;
import com.rogiel.httpchannel.service.Authenticator.AuthenticatorConfiguration;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>

View File

@@ -0,0 +1,23 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: HttpChannel API
Bundle-SymbolicName: com.rogiel.httpchannel;singleton:=true
Bundle-Version: 1.0.0
Export-Package: com.rogiel.httpchannel.captcha,
com.rogiel.httpchannel.captcha.exception;uses:="com.rogiel.httpchannel.service.exception",
com.rogiel.httpchannel.channel;uses:="com.rogiel.httpchannel.service",
com.rogiel.httpchannel.osgi;uses:="org.osgi.framework",
com.rogiel.httpchannel.service;uses:="com.rogiel.httpchannel.captcha,org.slf4j",
com.rogiel.httpchannel.service.config;uses:="com.rogiel.httpchannel.service",
com.rogiel.httpchannel.service.exception,
com.rogiel.httpchannel.service.helper;uses:="com.rogiel.httpchannel.service"
Bundle-Activator: com.rogiel.httpchannel.osgi.Activator
Import-Package: com.rogiel.httpchannel.captcha,
com.rogiel.httpchannel.captcha.exception,
com.rogiel.httpchannel.channel,
com.rogiel.httpchannel.osgi,
com.rogiel.httpchannel.service,
com.rogiel.httpchannel.service.config,
com.rogiel.httpchannel.service.exception,
com.rogiel.httpchannel.service.helper, org.osgi.framework