Skip to content
Snippets Groups Projects
Commit 814d0e4f authored by juanf's avatar juanf
Browse files

SSDM-3733 : New V3 API Call to retrieve session information

SVN: 36718
parent 6002b06e
No related branches found
No related tags found
No related merge requests found
/**
* Class automatically generated with
* {@link ch.ethz.sis.openbis.generic.shared.api.v3.dto.generators.DtoGenerator}
*/
define([ "stjs" ], function(stjs) {
var SessionInformation = function() {
};
stjs.extend(SessionInformation, null, [], function(constructor, prototype) {
prototype['@type'] = 'as.dto.session.SessionInformation';
constructor.serialVersionUID = 1;
prototype.homeGroupCode = null;
prototype.userName = null;
prototype.person = null;
prototype.creatorPerson = null;
prototype.getHomeGroupCode = function() {
return this.homeGroupCode;
};
prototype.setHomeGroupCode = function(homeGroupCode) {
this.homeGroupCode = homeGroupCode;
};
prototype.getUserName = function() {
return this.userName;
};
prototype.setUserName = function(userName) {
this.userName = userName;
};
prototype.getPerson = function() {
return this.person;
};
prototype.setPerson = function(person) {
this.person = person;
};
prototype.getCreatorPerson = function() {
return this.creatorPerson;
};
prototype.setCreatorPerson = function(creatorPerson) {
this.creatorPerson = creatorPerson;
};
}, {
person : "Person",
creatorPerson : "Person"
});
return SessionInformation;
})
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment