Uwd.System.Config = function(data) {
	var config = {
		data: data
	};
	
	Ext.apply(this, config);
	
	
	Uwd.System.Config.superclass.constructor.call(this);
};

Ext.extend(Uwd.System.Config, Ext.util.Observable, {
	
	
	getSessionId : function() {
		return this.data.PHPSESSID;
	},
	
	getVersion : function() {
		return this.data.UWD_VERSION;
	},
	
	getBackendUrl : function() {
		return this.data.UWD_BACKEND_URL;
	},
	
	getLoginType : function() {
		return this.data.UWD_LOGIN_TYPE;	
	},
	
	getDefaultPasswordLength : function() {
		return this.data.UWD_DEFAULT_PASSWORD_LENGTH;	
	}
	
});



