Last active
July 9, 2017 05:39
-
-
Save rickx1/1a384706dbb5ff9b4e035b2f0585286b to your computer and use it in GitHub Desktop.
Documentation of the EDS api
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
/** | |
* The globally unique identifier (GUID) or persistent identifier (PID) that identifies the item that is being edited. | |
*/ | |
public String getObjectId() // The ID of the object being edited | |
public Map<String, Property> getProperty() // A map of all the properties of the object | |
public RequestMode getRequestMode() // The reason why the EDS component is called | |
public String getRepositoryId() // The ID of the repository containing the properties | |
public Map<String, Object> getClientContext() // An array that contains a series of key value pairs that specify | |
// contextual information for a specific class or item type. | |
public String getExternalDataIdentifier() // A string that indicates the state of the data that was returned by the | |
// external data service. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment