Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
TAM
Merge requests
!50
Sso live
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Sso live
sso-live
into
master
Overview
1
Commits
8
Pipelines
1
Changes
20
Closed
Sso live
Otto Visser
requested to merge
sso-live
into
master
May 31, 2018
Overview
1
Commits
8
Pipelines
1
Changes
20
This adds /saml/ paths to the server, so Otto&co can fix it.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
25cbac2d
8 commits,
May 31, 2018
20 files
+
1470
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
src/main/java/nl/tudelft/ewi/tam/beans/QueueOurUser.java
0 → 100755
+
170
−
0
View file @ 25cbac2d
package
nl.tudelft.ewi.tam.beans
;
/**
* This class represents an user.
*/
@SuppressWarnings
(
"PMD.ShortClassName"
)
public
class
QueueOurUser
{
/**
* The {@link Integer} instance representing the unique identifier of the user.
*/
private
int
userId
;
/**
* Properties of the user.
*/
private
String
firstName
,
lastName
,
gender
,
netid
,
email
,
tshirtSize
;
/**
* Instantiate a new QueueOurUser instance.
* @param userId the unique identifier of an user
* @param firstName the first name of the user
* @param lastName the last name of the user
* @param gender the gender of the user
* @param netid the netid of the user
* @param email the email of the user
* @param tshirtSize the tshirt size of the user
*/
public
QueueOurUser
(
final
int
userId
,
final
String
firstName
,
final
String
lastName
,
final
String
gender
,
final
String
netid
,
final
String
email
,
final
String
tshirtSize
)
{
this
.
userId
=
userId
;
this
.
firstName
=
firstName
;
this
.
lastName
=
lastName
;
this
.
gender
=
gender
;
this
.
netid
=
netid
;
this
.
email
=
email
;
this
.
tshirtSize
=
tshirtSize
;
}
/**
* Gets netid.
*
* @return Value of netid.
*/
public
String
getNetid
()
{
return
netid
;
}
/**
* Sets new netid.
*
* @param netid New value of netid.
*/
public
void
setNetid
(
final
String
netid
)
{
this
.
netid
=
netid
;
}
/**
* Gets gender.
*
* @return Value of gender.
*/
public
String
getGender
()
{
return
gender
;
}
/**
* Sets new userId.
*
* @param userId New value of userId.
*/
public
void
setUserId
(
final
int
userId
)
{
this
.
userId
=
userId
;
}
/**
* Gets userId.
*
* @return Value of userId.
*/
public
int
getUserId
()
{
return
userId
;
}
/**
* Sets new email.
*
* @param email New value of email.
*/
public
void
setEmail
(
final
String
email
)
{
this
.
email
=
email
;
}
/**
* Gets tshirtSize.
*
* @return Value of tshirtSize.
*/
public
String
getTshirtSize
()
{
return
tshirtSize
;
}
/**
* Gets email.
*
* @return Value of email.
*/
public
String
getEmail
()
{
return
email
;
}
/**
* Gets firstName.
*
* @return Value of firstName.
*/
public
String
getFirstName
()
{
return
firstName
;
}
/**
* Sets new firstName.
*
* @param firstName New value of firstName.
*/
public
void
setFirstName
(
final
String
firstName
)
{
this
.
firstName
=
firstName
;
}
/**
* Gets lastName.
*
* @return Value of lastName.
*/
public
String
getLastName
()
{
return
lastName
;
}
/**
* Sets new lastName.
*
* @param lastName New value of lastName.
*/
public
void
setLastName
(
final
String
lastName
)
{
this
.
lastName
=
lastName
;
}
/**
* Sets new gender.
*
* @param gender New value of gender.
*/
public
void
setGender
(
final
String
gender
)
{
this
.
gender
=
gender
;
}
/**
* Sets new tshirtSize.
*
* @param tshirtSize New value of tshirtSize.
*/
public
void
setTshirtSize
(
final
String
tshirtSize
)
{
this
.
tshirtSize
=
tshirtSize
;
}
}
Loading