Skip to content

Commit

Permalink
add metadata to Java proxy. Add getattr and setattr as well. Closes #12
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Sep 17, 2014
1 parent 0d0553c commit c6ba147
Show file tree
Hide file tree
Showing 4 changed files with 484 additions and 368 deletions.
5 changes: 4 additions & 1 deletion java/src/net/razorvine/pyro/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @version 4.2
*/
public final class Config implements Serializable {
private static final long serialVersionUID = 198635706890570066L;
private static final long serialVersionUID = 198635706890570067L;

public static byte[] HMAC_KEY = null;
public static String MSG_TRACE_DIR = null;
Expand All @@ -28,4 +28,7 @@ public enum SerializerType {
public static boolean SERPENT_INDENT = false;
public static boolean SERPENT_SET_LITERALS = false; // set to true if talking to Python 3.2 or newer
public static SerializerType SERIALIZER = SerializerType.serpent;
public static boolean METADATA = true; // get metadata from server?

public static String DAEMON_NAME = "Pyro.Daemon";
}
Loading

0 comments on commit c6ba147

Please sign in to comment.