You are here

getModifiedBy

public String getModifiedBy() returns the who last modified this node.

Parameters

None

Returns

Returns a string representing the user who last modified this node.

Example


    Node node = getTestNode(session, "ClimbingVolcanoes.JPG");
    
    Log.d(TAG, "Node Test");
        
    Log.d(TAG, "createdBy: " + node.createdBy());
    Log.d(TAG, "creationTime: " + node.getCreationTime().getTime().toString());
    Log.d(TAG, "description: " + node.getDescription());
    Log.d(TAG, "identifier: " + node.getIdentifier());
    Log.d(TAG, "modificationTime: " + node.getModificationTime().getTime().toString());
    Log.d(TAG, "modifiedBy: " + node.getModifiedBy());
    Log.d(TAG, "name: " + node.getName());