public boolean has(final String bokType) { assert !Bok.SITE.equals(bokType) && !Bok.PROJECT.equals(bokType) : "ClientSession: use get methods instead"; return byType.get(bokType) != null; }
public Bok getProjectBok(final String bokType) { assert !Bok.SITE.equals(bokType) && !Bok.PROJECT.equals(bokType) : "ClientSession: use get methods instead"; return byType.get(bokType); }