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
<ion-app [class.dark-theme]="dark"> | |
<ion-split-pane contentId="main-content" when="md" | |
> | |
<ion-menu contentId="main-content" menuId="main-menu" | |
type="overlay" | |
> | |
<ion-content> | |
<ion-list id="inbox-list"> | |
<ion-list-header>Menu</ion-list-header> | |
<ion-note *ngIf="user">{{ user.nome }}</ion-note> |
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
public interface EntityMapper<D, E> { | |
E toEntity(D dto); | |
D toDto(E entity); | |
List<E> toEntity(List<D> dtoList); | |
List<D> toDto(List<E> entityList); | |
} |
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
@Log | |
public class JsonUtil implements Serializable { | |
private static final long serialVersionUID = 1L; | |
@Inject | |
@RequestCookieMap | |
private Map<String, Object> cookieMap; | |
public HttpHeaders createJsonHeader() { |