Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/extensions/cpsection/modemconfiguration/model.py
blob: f96e88f1b0671efa35ab015c2f638f383ad5bde6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright (C) 2009 Paraguay Educa, Martin Abente
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  US

import gconf

from jarabe.model.network import GSM_USERNAME_PATH, GSM_PASSWORD_PATH, \
                                 GSM_NUMBER_PATH, GSM_APN_PATH

def get_username():
    client = gconf.client_get_default()
    return client.get_string(GSM_USERNAME_PATH) or ''

def get_password():
    client = gconf.client_get_default()
    return client.get_string(GSM_PASSWORD_PATH) or ''

def get_number():
    client = gconf.client_get_default()
    return client.get_string(GSM_NUMBER_PATH) or ''

def get_apn():
    client = gconf.client_get_default()
    return client.get_string(GSM_APN_PATH) or ''

def set_username(username):
    client = gconf.client_get_default()
    client.set_string(GSM_USERNAME_PATH, username)

def set_password(password):
    client = gconf.client_get_default()
    client.set_string(GSM_PASSWORD_PATH, password)

def set_number(number):
    client = gconf.client_get_default()
    client.set_string(GSM_NUMBER_PATH, number)

def set_apn(apn):
    client = gconf.client_get_default()
    client.set_string(GSM_APN_PATH, apn)