Package com.microstrategy.web.objects
Interface WebChangeJournalEntry
-
- All Known Implementing Classes:
WebChangeJournalEntryImpl
public interface WebChangeJournalEntry
This interface defines the change journal entry to provide the API for cloudOM.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getApplicationType()
To get the application typeEnumDSSXMLApplicationType
of the change journal.WebChangeJournalLinkitemEntries
getLinkitemEntries()
To get change journal Linkitem entry listjava.lang.String
getMachine()
To get the machine name of the change journal.WebChangeJournalObjectEntries
getObjectEntries()
To get change journal object entry listjava.lang.String
getProject()
To get the project of the change journal entry.java.lang.String
getSession()
To get the session of the change journal.java.lang.String
getTimestamp()
To get the timestamp of the change journal.java.lang.String
getTransactionID()
To get the transactionID of this change journal.int
getTransactionType()
To get the transactionType of this change journal.java.lang.String
getUserID()
To get the user id of the change journal.java.lang.String
getUserName()
To get the user name of the change journal.
-
-
-
Method Detail
-
getTransactionID
java.lang.String getTransactionID()
To get the transactionID of this change journal.- Returns:
- transactionID
-
getTransactionType
int getTransactionType()
To get the transactionType of this change journal.- Returns:
- transactionType
-
getProject
java.lang.String getProject()
To get the project of the change journal entry.- Returns:
- project name
-
getTimestamp
java.lang.String getTimestamp()
To get the timestamp of the change journal.- Returns:
- timestamp that the change journal is created.
-
getApplicationType
int getApplicationType()
To get the application typeEnumDSSXMLApplicationType
of the change journal.- Returns:
- application type of the change journal.
-
getSession
java.lang.String getSession()
To get the session of the change journal.- Returns:
- session
-
getUserName
java.lang.String getUserName()
To get the user name of the change journal.- Returns:
- user name.
-
getUserID
java.lang.String getUserID()
To get the user id of the change journal.- Returns:
- user id.
-
getMachine
java.lang.String getMachine()
To get the machine name of the change journal.- Returns:
- machine name.
-
getObjectEntries
WebChangeJournalObjectEntries getObjectEntries()
To get change journal object entry list- Returns:
- object entries
-
getLinkitemEntries
WebChangeJournalLinkitemEntries getLinkitemEntries()
To get change journal Linkitem entry list- Returns:
- linkitem entries
-
-