-
Notifications
You must be signed in to change notification settings - Fork 36
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
1 parent
6c01ccc
commit 2584f12
Showing
5 changed files
with
29 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
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
20 changes: 20 additions & 0 deletions
20
core/src/main/java/com/ericsson/bss/cassandra/ecchronos/core/utils/ConsistencyType.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,20 @@ | ||
package com.ericsson.bss.cassandra.ecchronos.core.utils; | ||
|
||
public enum ConsistencyType | ||
{ | ||
DEFAULT("DEFAULT"), | ||
LOCAL("LOCAL"), | ||
SERIAL("SERIAL"); | ||
|
||
private final String consistencyTypeValue; | ||
|
||
ConsistencyType(final String consistentcyValue) | ||
{ | ||
consistencyTypeValue = consistentcyValue; | ||
} | ||
|
||
public final String getStringValue() | ||
{ | ||
return consistencyTypeValue; | ||
} | ||
} |