-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for --objid during guess operation
- Loading branch information
Showing
5 changed files
with
68 additions
and
18 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
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,16 @@ | ||
package eu.tneitzel.rmg.utils; | ||
|
||
import java.rmi.Remote; | ||
|
||
/** | ||
* IUnknown is a dummy interface that is used when performing method guessing with | ||
* a manually specified ObjID. The original implementation required an RemoteObjectWrapper, | ||
* which is basically a wrapper around a remote object. When guessing on ObjID, we only | ||
* have a remote ref. To make a wrapper out of it, we need to specify an interface that | ||
* the ref implements. IUnknown is used for this purpose. | ||
* | ||
* @author Tobias Neitzel (@qtc_de) | ||
*/ | ||
public interface IUnknown extends Remote | ||
{ | ||
} |
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