-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(clean): remove unused code (#249)
* build(clean): remove unused code
- Loading branch information
1 parent
02b297f
commit b5f83b6
Showing
14 changed files
with
31 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
src/main/java/fr/icdc/ebad/security/AuthoritiesConstants.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 7 additions & 29 deletions
36
src/main/java/fr/icdc/ebad/web/rest/dto/EnvironnementInfoDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,21 @@ | ||
package fr.icdc.ebad.web.rest.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* Created by dtrouillet on 03/03/2016. | ||
*/ | ||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class EnvironnementInfoDTO { | ||
|
||
private Long id; | ||
private String diskSpace; | ||
private Date dateTraitement; | ||
|
||
public EnvironnementInfoDTO(Long id, String diskSpace, Date dateTraitement) { | ||
this.id = id; | ||
this.diskSpace = diskSpace; | ||
this.dateTraitement = dateTraitement; | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
public String getDiskSpace() { | ||
return diskSpace; | ||
} | ||
|
||
public void setDiskSpace(String diskSpace) { | ||
this.diskSpace = diskSpace; | ||
} | ||
|
||
public Date getDateTraitement() { | ||
return dateTraitement; | ||
} | ||
|
||
public void setDateTraitement(Date dateTraitement) { | ||
this.dateTraitement = dateTraitement; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,14 @@ | ||
package fr.icdc.ebad.web.rest.dto; | ||
|
||
import lombok.Data; | ||
|
||
/** | ||
* Created by dtrouillet on 07/03/2016. | ||
*/ | ||
|
||
@Data | ||
public class RolesDTO { | ||
private String loginUser; | ||
private boolean roleUser; | ||
private boolean roleAdmin; | ||
|
||
public boolean isRoleUser() { | ||
return roleUser; | ||
} | ||
|
||
public void setRoleUser(boolean roleUser) { | ||
this.roleUser = roleUser; | ||
} | ||
|
||
public boolean isRoleAdmin() { | ||
return roleAdmin; | ||
} | ||
|
||
public void setRoleAdmin(boolean roleAdmin) { | ||
this.roleAdmin = roleAdmin; | ||
} | ||
|
||
public String getLoginUser() { | ||
return loginUser; | ||
} | ||
|
||
public void setLoginUser(String loginUser) { | ||
this.loginUser = loginUser; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
src/main/java/fr/icdc/ebad/web/rest/errors/FieldErrorVM.java
This file was deleted.
Oops, something went wrong.