-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Wagon so that we can start integrating with sample project
- Loading branch information
1 parent
3fc0930
commit d760b2e
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package io.nia.ipfs; | ||
|
||
import org.apache.maven.wagon.*; | ||
import org.apache.maven.wagon.authentication.AuthenticationException; | ||
import org.apache.maven.wagon.authorization.AuthorizationException; | ||
import sun.reflect.generics.reflectiveObjects.NotImplementedException; | ||
|
||
|
||
public class IpfsWagon extends StreamWagon { | ||
|
||
@Override | ||
public void fillInputData(InputData inputData) throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
@Override | ||
public void fillOutputData(OutputData outputData) throws TransferFailedException { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
@Override | ||
protected void openConnectionInternal() throws ConnectionException, AuthenticationException { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
@Override | ||
public void closeConnection() throws ConnectionException { | ||
throw new NotImplementedException(); | ||
} | ||
} |