This website works better with JavaScript.
Home
Help
Register
Sign In
pEp.foundation
/
pEpJNIAdapter
Watch
13
Star
1
Fork
3
Code
Issues
Pull Requests
1
Releases
70
Activity
Browse Source
Tests: TestModel - Add emum KeyType
JNI-153
heck
1 year ago
parent
ea973561f8
commit
8dded68651
1 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+14
-0
test/java/foundation/pEp/jniadapter/test/utils/model/KeyType.java
+ 14
- 0
test/java/foundation/pEp/jniadapter/test/utils/model/KeyType.java
View File
@ -0,0 +1,14 @@
package
foundation.pEp.jniadapter.test.utils.model
;
public
enum
KeyType
{
NORMAL
(
)
{
public
String
toString
(
)
{
return
"normal"
;
}
}
,
PASSPHRASE
(
)
{
public
String
toString
(
)
{
return
"passphrase"
;
}
}
}
Write
Preview
Loading…
Cancel
Save