Coverage Report - org.apache.shiro.samples.sprhib.web.EditUserCommand
 
Classes in this File Line Coverage Branch Coverage Complexity
EditUserCommand
0%
0/19
0%
0/2
1.111
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *     http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package org.apache.shiro.samples.sprhib.web;
 20  
 
 21  
 import org.apache.shiro.crypto.hash.Sha256Hash;
 22  
 import org.apache.shiro.samples.sprhib.model.User;
 23  
 import org.springframework.util.Assert;
 24  
 import org.springframework.util.StringUtils;
 25  
 
 26  
 /**
 27  
  * Command binding object for editing a user.
 28  
  */
 29  0
 public class EditUserCommand {
 30  
 
 31  
     private Long userId;
 32  
     private String username;
 33  
     private String email;
 34  
     private String password;
 35  
 
 36  
     public Long getUserId() {
 37  0
         return userId;
 38  
     }
 39  
 
 40  
     public void setUserId(Long userId) {
 41  0
         this.userId = userId;
 42  0
     }
 43  
 
 44  
     public String getUsername() {
 45  0
         return username;
 46  
     }
 47  
 
 48  
     public void setUsername(String username) {
 49  0
         this.username = username;
 50  0
     }
 51  
 
 52  
     public String getEmail() {
 53  0
         return email;
 54  
     }
 55  
 
 56  
     public void setEmail(String email) {
 57  0
         this.email = email;
 58  0
     }
 59  
 
 60  
     public String getPassword() {
 61  0
         return password;
 62  
     }
 63  
 
 64  
     public void setPassword(String password) {
 65  0
         this.password = password;
 66  0
     }
 67  
 
 68  
     public void updateUser(User user) {
 69  0
         Assert.isTrue( userId.equals( user.getId() ), "User ID of command must match the user being updated." );
 70  0
         user.setUsername( getUsername() );
 71  0
         user.setEmail( getEmail() );
 72  0
         if( StringUtils.hasText(getPassword()) ) {
 73  0
             user.setPassword( new Sha256Hash(getPassword()).toHex() );
 74  
         }
 75  0
     }
 76  
 }