K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / python2.7 / dist-packages / landscape / ui / model / configuration /
server ip : 104.21.89.46

your ip : 172.69.58.19

H O M E


Filename/usr/lib/python2.7/dist-packages/landscape/ui/model/configuration/uisettings.py
Size1.95 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:56
Last modified20-Feb-2014 23:01
Last accessed07-Jul-2025 09:56
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
class UISettings(object):
"""
A very thin wrapper around L{GSettings} to avoid having to know the
L{BaseKey} and type information elsewhere. In some future version it would
be right to bind to change events here so we can react to people changing
the settings in dconf, for now that is overkill.
"""

BASE_KEY = "com.canonical.landscape-client-settings"

def __init__(self, settings):
self.settings = settings.new(self.BASE_KEY)

def get_management_type(self):
return self.settings.get_string("management-type")

def set_management_type(self, value):
self.settings.set_string("management-type", value)

def get_computer_title(self):
return self.settings.get_string("computer-title")

def set_computer_title(self, value):
self.settings.set_string("computer-title", value)

def get_hosted_landscape_host(self):
return self.settings.get_string("hosted-landscape-host")

def get_hosted_account_name(self):
return self.settings.get_string("hosted-account-name")

def set_hosted_account_name(self, value):
self.settings.set_string("hosted-account-name", value)

def get_hosted_password(self):
return self.settings.get_string("hosted-password")

def set_hosted_password(self, value):
self.settings.set_string("hosted-password", value)

def get_local_landscape_host(self):
return self.settings.get_string("local-landscape-host")

def set_local_landscape_host(self, value):
self.settings.set_string("local-landscape-host", value)

def get_local_account_name(self):
return self.settings.get_string("local-account-name")

def set_local_account_name(self, value):
self.settings.set_string("local-account-name", value)

def get_local_password(self):
return self.settings.get_string("local-password")

def set_local_password(self, value):
self.settings.set_string("local-password", value)