Package com.ibm.dbb.metadata
Interface MetadataObject
-
- All Superinterfaces:
com.ibm.dbb.metadata.common.MetadataStoreConstants
- All Known Subinterfaces:
BuildMap
,BuildResult
,Collection
,ManagedObject
public interface MetadataObject extends com.ibm.dbb.metadata.common.MetadataStoreConstants
-
-
Field Summary
-
Fields inherited from interface com.ibm.dbb.metadata.common.MetadataStoreConstants
AMPERSAND, AND, APPLICATION_JSON, ARTIFACT, ASC, ATTACHMENT, ATTACHMENTS, BASIC_AUTHENTICATION, BRANCH, BUILD, BUILD_REPORT, BUILD_REPORT_DATA, BUILD_RESULT, CATEGORY, CICS, COLLECTION, COMMA, CONTENT, CONTENT_TYPE, CREATED, CREATED_BY, DATASET, DATE, DEFAULT_GROUP, DEFAULT_SSL_PROTOCOLS, DEPLOY_TYPE, DESC, DLI, EQUALS, FILE, FORM_AUTHENTICATION, GROUP, GROUPS, ID, IMPACT_FILES, LABEL, LABELS, LANGUAGE, LAST_UPDATED, LAST_UPDATED_BY, LD_PREFIX, LIBRARY, LNAME, LOG, LOGICAL_DEPENDENCIES, LOGICAL_FILE, MEMBER, MINIMAL, MQ, NAME, ORDER, ORDER_BY, OWNER, PATH, PERMISSION, PROPERTIES, PROPERTY, QUESTION_MARK, QUOTE, REST, SELF, SIZE, SLASH, SOURCE, SPACE, SQL, STATE, STATUS, TEAM, TEXT_HTML, TYPE, VALUE, VERSION
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Date
getCreated()
Return the time that the repository object was createdjava.lang.String
getCreatedBy()
Return the user that creates the repository objectjava.util.Date
getLastUpdated()
Return the time the repository object last updatedjava.lang.String
getLastUpdatedBy()
Return the user that updated the repository objectcom.google.gson.JsonObject
toJSON()
Output the attributes of the repository object in JSON formatjava.lang.String
toString()
Output the attributes of the repository object injava.lang.String
-
-
-
Method Detail
-
getCreated
java.util.Date getCreated()
Return the time that the repository object was created- Returns:
- the time of creation
-
getCreatedBy
java.lang.String getCreatedBy()
Return the user that creates the repository object- Returns:
- the user
-
getLastUpdated
java.util.Date getLastUpdated()
Return the time the repository object last updated- Returns:
- the time of last updated
-
getLastUpdatedBy
java.lang.String getLastUpdatedBy()
Return the user that updated the repository object- Returns:
- the name of the user
-
toJSON
com.google.gson.JsonObject toJSON() throws BuildException
Output the attributes of the repository object in JSON format- Returns:
- the JSON format
- Throws:
BuildException
-
toString
java.lang.String toString()
Output the attributes of the repository object injava.lang.String
- Overrides:
toString
in classjava.lang.Object
- Returns:
- the string representation of the repository object
-
-