Java Code Examples for com.google.firebase.database.ServerValue#TIMESTAMP

The following examples show how to use com.google.firebase.database.ServerValue#TIMESTAMP . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ChatGroup.java    From chat21-android-sdk with GNU Affero General Public License v3.0 4 votes vote down vote up
public java.util.Map<String, String> getCreatedOn() {
    return ServerValue.TIMESTAMP;
}
 
Example 2
Source File: Conversation.java    From chat21-android-sdk with GNU Affero General Public License v3.0 4 votes vote down vote up
public java.util.Map<String, String> getTimestamp() {
    return ServerValue.TIMESTAMP;
}
 
Example 3
Source File: Message.java    From firebase-appengine-backend with Apache License 2.0 4 votes vote down vote up
public Map<String, String> getTime() {
  return ServerValue.TIMESTAMP;
}
 
Example 4
Source File: LogEntry.java    From firebase-appengine-backend with Apache License 2.0 4 votes vote down vote up
public Map<String, String> getTime() {
  return ServerValue.TIMESTAMP;
}
 
Example 5
Source File: Order.java    From Pharmacy-Android with GNU General Public License v3.0 2 votes vote down vote up
/**
 *  Populate the timestamp server side
 * @return Firebase ServerValue.TIMESTAMP
 * The createdAt
 */
public Map<String, String> getCreatedAt() {
    return ServerValue.TIMESTAMP;
}
 
Example 6
Source File: User.java    From Pharmacy-Android with GNU General Public License v3.0 2 votes vote down vote up
/**
 *  Populate the timestamp server side
 * @return Firebase ServerValue.TIMESTAMP
 * The createdAt
 */
public Map<String, String> getCreatedAt() {
    return ServerValue.TIMESTAMP;
}
 
Example 7
Source File: BaseMessage.java    From firebase-android-client with Apache License 2.0 votes vote down vote up
public Map<String, String> getTime() { return ServerValue.TIMESTAMP; } 
Example 8
Source File: LogEntry.java    From firebase-android-client with Apache License 2.0 votes vote down vote up
public Map<String, String> getTime() { return ServerValue.TIMESTAMP; }