Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create ActivityModel.java #1250

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package org.datatransferproject.types.common.models.activity;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.Instant;

public class ActivityModel {
private final String service;
private final String action;
private final Instant timestamp;

@JsonCreator
public ActivityModel(
@JsonProperty("service") String service,
@JsonProperty("action") String action,
@JsonProperty("timestamp") Instant timestamp) {
this.service = service;
this.action = action;
this.timestamp = timestamp;
}

public String getService() {
return service;
}

public String getAction() {
return action;
}

public Instant gettimestamp() { return timestamp; }

@Override
public int hashCode() {
return Objects.hash(getService(), getAction(), gettimestamp());
}

}