/** * Copyright (c) 2015 EMC Corporation * All Rights Reserved * * This software contains the intellectual property of EMC Corporation * or is licensed to EMC Corporation from third parties. Use of this * software and the intellectual property contained therein is expressly * limited to the terms and conditions of the License Agreement under which * it is provided by or on behalf of EMC. */ package com.emc.storageos.keystone.restapi; import java.net.URI; import com.emc.storageos.services.restutil.RestClientFactory; import com.emc.storageos.services.restutil.RestClientItf; import com.sun.jersey.api.client.Client; public class KeystoneRestClientFactory extends RestClientFactory { @Override protected RestClientItf createNewRestClient(URI endpoint, String managerDn, String password, Client client) { return new KeystoneApiClient(endpoint, managerDn, password, client); } }