semanticwfs  Version 0.1.0.0
UserType Enum Reference

Enumeration type including user levels which may be applied in the SemanticWFS. More...

Collaboration diagram for UserType:

Public Member Functions

String getUserTypeString ()
 Gets the String representation of the user type. More...
 
String toString ()
 

Public Attributes

 Administrator =("administrator")
 Administrator role. More...
 
 Configurer =("configurer")
 Configurer role. More...
 
 User =("user")
 User role. More...
 

Private Member Functions

 UserType (String userTypeString)
 Constructor for this class. More...
 

Private Attributes

final String userTypeString
 

Detailed Description

Enumeration type including user levels which may be applied in the SemanticWFS.

Constructor & Destructor Documentation

◆ UserType()

UserType ( String  userTypeString)
private

Constructor for this class.

Parameters
userTypeStringThe String indicating the usertype to be assigned
21  {
23  }
final String userTypeString
Definition: UserType.java:15

Member Function Documentation

◆ getUserTypeString()

String getUserTypeString ( )

Gets the String representation of the user type.

Returns
The String representation
29  {
30  return userTypeString;
31  }

◆ toString()

String toString ( )
34  {
35  return userTypeString;
36  }

Referenced by User.User().

Member Data Documentation

◆ Administrator

Administrator =("administrator")

◆ Configurer

Configurer =("configurer")

◆ User

User =("user")

User role.

◆ userTypeString

final String userTypeString
private