@SessionScoped
public class SessionScopedClass implements Serializable {
//This class gets constructed once per session, and is shared among all CDI-managed classes within that session. Notice that it implements Serializable, since the instance will get put on the session.
@Inject
...