JAVA-13721 Further formatting of files
This commit is contained in:
parent
7b8fad5dc9
commit
585d1e1575
@ -1,7 +1,5 @@
|
|||||||
package com.baeldung.mockito.argumentcaptor;
|
package com.baeldung.mockito.argumentcaptor;
|
||||||
|
|
||||||
public enum AuthenticationStatus {
|
public enum AuthenticationStatus {
|
||||||
AUTHENTICATED,
|
AUTHENTICATED, NOT_AUTHENTICATED, ERROR
|
||||||
NOT_AUTHENTICATED,
|
|
||||||
ERROR
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
package com.baeldung.mockito.argumentcaptor;
|
package com.baeldung.mockito.argumentcaptor;
|
||||||
|
|
||||||
public enum ServiceStatus {
|
public enum ServiceStatus {
|
||||||
UP,
|
UP, DOWN, AUTHENTICATED
|
||||||
DOWN,
|
|
||||||
AUTHENTICATED
|
|
||||||
}
|
}
|
||||||
|
@ -17,18 +17,23 @@ public class User {
|
|||||||
public Integer getId() {
|
public Integer getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setName(String name) {
|
public void setName(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getAge() {
|
public int getAge() {
|
||||||
return age;
|
return age;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAge(int age) {
|
public void setAge(int age) {
|
||||||
this.age = age;
|
this.age = age;
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@ import com.baeldung.mockito.junit5.User;
|
|||||||
public interface UserRepository {
|
public interface UserRepository {
|
||||||
|
|
||||||
User insert(User user);
|
User insert(User user);
|
||||||
|
|
||||||
boolean isUsernameAlreadyExists(String userName);
|
boolean isUsernameAlreadyExists(String userName);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,8 @@ public class DefaultUserService implements UserService {
|
|||||||
throw new RuntimeException(Errors.USER_NAME_REQUIRED);
|
throw new RuntimeException(Errors.USER_NAME_REQUIRED);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(user.getName().length() < settingRepository.getUserNameMinLength()) {
|
if (user.getName()
|
||||||
|
.length() < settingRepository.getUserNameMinLength()) {
|
||||||
throw new RuntimeException(Errors.USER_NAME_SHORT);
|
throw new RuntimeException(Errors.USER_NAME_SHORT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user