16 lines
192 B
Java
16 lines
192 B
Java
package io.kamax.mxisd.mapping;
|
|
|
|
public interface MappingSession {
|
|
|
|
String getServer();
|
|
|
|
String getSecret();
|
|
|
|
int getAttempt();
|
|
|
|
String getMedium();
|
|
|
|
String getValue();
|
|
|
|
}
|