1617181920212223
private final Class<T> type; public OwnedModelManager(Class<T> type) { super(); restClient = new JZWRESTClient(); this.type = type; }
18192021222324
public ModelManager() { super(); restClient = new JZWRESTClient(); }
2425262728293031
} public ModelManager(Class<T> type) { super(); restClient = new JZWRESTClient(); this.type = type; }