-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
427 additions
and
6 deletions.
There are no files selected for viewing
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
73 changes: 73 additions & 0 deletions
73
camunda-kafka-model/src/main/java/de/viadee/camunda/kafka/event/IdentityLinkEvent.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package de.viadee.camunda.kafka.event; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* <p> | ||
* IdentityLinkEvent class. | ||
* </p> | ||
* | ||
* | ||
* @version $Id: $Id | ||
*/ | ||
public class IdentityLinkEvent extends DetailEvent { | ||
|
||
public enum OperationType { | ||
add, delete | ||
} | ||
|
||
private String type; | ||
private String userId; | ||
private String groupId; | ||
private OperationType operationType; | ||
private String assignerId; | ||
private Date removalTime; | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public String getUserId() { | ||
return userId; | ||
} | ||
|
||
public void setUserId(String userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public String getGroupId() { | ||
return groupId; | ||
} | ||
|
||
public void setGroupId(String groupId) { | ||
this.groupId = groupId; | ||
} | ||
|
||
public OperationType getOperationType() { | ||
return operationType; | ||
} | ||
|
||
public void setOperationType(OperationType operationType) { | ||
this.operationType = operationType; | ||
} | ||
|
||
public String getAssignerId() { | ||
return assignerId; | ||
} | ||
|
||
public void setAssignerId(String assignerId) { | ||
this.assignerId = assignerId; | ||
} | ||
|
||
public Date getRemovalTime() { | ||
return removalTime; | ||
} | ||
|
||
public void setRemovalTime(Date removalTime) { | ||
this.removalTime = removalTime; | ||
} | ||
} |
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
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
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
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
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
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
Oops, something went wrong.