Ignore:
Timestamp:
02/02/22 19:35:14 (2 years ago)
Author:
andrejTavchioski <andrej.tavchioski@…>
Branches:
master
Children:
80ddcae, c71fa06
Parents:
df4089c
Message:

parkingZone and parkingSession services fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/app/src/main/java/parkup/entities/RegisteredUser.java

    rdf4089c r98f448a  
    6262    public RegisteredUser() {
    6363        this.plates = new ArrayList<Plate>();
    64         this.role = UserRole.REG_USER;
     64        this.role = UserRole.ROLE_REG_USER;
    6565        session=null;
    6666    }
     
    7474        this.email = email;
    7575        this.mobile = mobile;
    76         this.role = UserRole.REG_USER;
     76        this.role = UserRole.ROLE_REG_USER;
    7777        session=null;
    7878    }
     
    8585        this.email = email;
    8686        this.mobile = mobile;
    87         this.role = UserRole.REG_USER;
     87        this.role = UserRole.ROLE_REG_USER;
    8888        session=null;
    8989    }
     
    9595        this.email = email;
    9696        this.mobile = mobile;
    97         this.role = UserRole.REG_USER;
     97        this.role = UserRole.ROLE_REG_USER;
    9898        session=null;
    9999    }
Note: See TracChangeset for help on using the changeset viewer.