You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simplesshd/src/org/galexander/sshd/Prefs.java

45 lines
1020 B

package org.galexander.sshd;
import android.content.SharedPreferences;
import android.content.Context;
import android.preference.PreferenceManager;
public class Prefs {
private static SharedPreferences pref = null;
public static void init(Context c) {
if (pref == null) {
pref = PreferenceManager.getDefaultSharedPreferences(c);
}
}
public static boolean get_onboot() {
return pref.getBoolean("onboot", false);
}
public static int get_port() {
int ret;
try {
ret = Integer.valueOf(pref.getString("port", "2222"));
} catch (Exception e) {
ret = 2222;
}
return ret;
}
public static String get_path() {
return pref.getString("path", "/sdcard/ssh");
}
public static String get_shell() {
return pref.getString("shell", "/system/bin/sh");
}
public static String get_home() {
return pref.getString("home", "/sdcard/ssh");
}
public static String get_extra() {
return pref.getString("extra", "");
}
public static SharedPreferences.Editor edit() {
return pref.edit();
}
};