Skip to content

Instantly share code, notes, and snippets.

View fabiojb's full-sized avatar

Fabio José Bohnenberger fabiojb

  • Brazil
View GitHub Profile
@fabiojb
fabiojb / Identifiable.java
Last active July 11, 2016 23:50
JSF Generic converter for Entities, Enums, etc.
package org.teste.model;
public interface Identifiable<T> {
public T getId();
}