Methods Summary |
---|
public RPReply | _process(RPRequest request)
String method = request.getMethod();
/*
if ( method.equals( "getPluginProperties")){
return( new RPReply( delegate.getPluginProperties()));
}
*/
throw( new RPException( "Unknown method: " + method ));
|
protected void | _setDelegate(java.lang.Object _delegate)
delegate = (Torrent)_delegate;
name = delegate.getName();
size = delegate.getSize();
hash = delegate.getHash();
|
public java.lang.Object | _setLocal()
return( _fixupLocal());
|
public static org.gudy.azureus2.pluginsimpl.remote.torrent.RPTorrent | create(Torrent _delegate)
RPTorrent res =(RPTorrent)_lookupLocal( _delegate );
if ( res == null ){
res = new RPTorrent( _delegate );
}
return( res );
|
public java.lang.Object | getAdditionalProperty(java.lang.String name)
notSupported();
return(null);
|
public java.net.URL | getAnnounceURL()
notSupported();
return( null );
|
public TorrentAnnounceURLList | getAnnounceURLList()
notSupported();
return( null );
|
public java.lang.String | getComment()
notSupported();
return(null);
|
public java.lang.String | getCreatedBy()
notSupported();
return(null);
|
public long | getCreationDate()
notSupported();
return(0);
|
public java.lang.String | getEncoding()
notSupported();
return( null );
|
public TorrentFile[] | getFiles()
notSupported();
return(null);
|
public byte[] | getHash()
return( hash );
|
public java.net.URL | getMagnetURI()
notSupported();
return( null );
|
public java.util.Map | getMapProperty(java.lang.String name)
notSupported();
return( null );
|
public java.lang.String | getName()
return( name );
|
public long | getPieceCount()
notSupported();
return(0);
|
public long | getPieceSize()
notSupported();
return(0);
|
public byte[][] | getPieces()
notSupported();
return(null);
|
public java.lang.String | getPluginStringProperty(java.lang.String name)
notSupported();
return( null );
|
public long | getSize()
return( size );
|
public boolean | isComplete()
notSupported();
return( false );
|
public boolean | isDecentralised()
notSupported();
return( false );
|
public boolean | isDecentralisedBackupEnabled()
notSupported();
return( false );
|
public boolean | isDecentralisedBackupRequested()
notSupported();
return( false );
|
public boolean | isPrivate()
notSupported();
return( false );
|
public Torrent | removeAdditionalProperties()
notSupported();
return( null );
|
public void | save()
notSupported();
|
public void | setAnnounceURL(java.net.URL url)
notSupported();
|
public void | setComment(java.lang.String comment)
notSupported();
|
public void | setComplete(java.io.File data_dir)
notSupported();
|
public void | setDecentralisedBackupRequested(boolean requested)
notSupported();
|
public void | setDefaultEncoding()
notSupported();
|
public void | setEncoding(java.lang.String encoding)
notSupported();
|
public void | setMapProperty(java.lang.String name, java.util.Map value)
notSupported();
|
public void | setPluginStringProperty(java.lang.String name, java.lang.String value)
notSupported();
|
public void | setPrivate(boolean priv)
notSupported();
|
public boolean | wasCreatedByUs()
notSupported();
return( false );
|
public byte[] | writeToBEncodedData()
notSupported();
return( null );
|
public void | writeToFile(java.io.File file)
notSupported();
|
public java.util.Map | writeToMap()
notSupported();
return( null );
|