File: src/State.js
/*
Copyright 2012 Rustici Software
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/**
TinCan client library
@module TinCan
@submodule TinCan.State
**/
(function () {
"use strict";
/**
@class TinCan.State
@constructor
*/
var State = TinCan.State = function (cfg) {
this.log("constructor");
/**
@property id
@type String
*/
this.id = null;
/**
@property updated
@type Boolean
*/
this.updated = null;
/**
@property contents
@type String
*/
this.contents = null;
/**
@property etag
@type String
*/
this.etag = null;
/**
@property contentType
@type String
*/
this.contentType = null;
this.init(cfg);
};
State.prototype = {
/**
@property LOG_SRC
*/
LOG_SRC: "State",
/**
@method log
*/
log: TinCan.prototype.log,
/**
@method init
@param {Object} [options] Configuration used to initialize
*/
init: function (cfg) {
this.log("init");
var i,
directProps = [
"id",
"contents",
"etag",
"contentType"
];
cfg = cfg || {};
for (i = 0; i < directProps.length; i += 1) {
if (cfg.hasOwnProperty(directProps[i]) && cfg[directProps[i]] !== null) {
this[directProps[i]] = cfg[directProps[i]];
}
}
this.updated = false;
}
};
/**
@method fromJSON
@return {Object} State
@static
*/
State.fromJSON = function (stateJSON) {
State.prototype.log("fromJSON");
var _state = JSON.parse(stateJSON);
return new State(_state);
};
}());