/* * Copyright (c) 2016 EMC Corporation * All Rights Reserved */ package com.emc.storageos.volumecontroller.impl.vnxunity; import com.emc.storageos.db.client.DbClient; import com.emc.storageos.db.client.model.StorageSystem; import com.emc.storageos.vnxe.VNXeApiClient; import com.emc.storageos.vnxe.VNXeApiClientFactory; public class VNXUnityOperations { protected VNXeApiClientFactory clientFactory; protected DbClient dbClient; public VNXeApiClientFactory getVnxeApiClientFactory() { return clientFactory; } public void setVnxeApiClientFactory(VNXeApiClientFactory clientFactory) { this.clientFactory = clientFactory; } public DbClient getDbClient() { return dbClient; } public void setDbClient(DbClient dbClient) { this.dbClient = dbClient; } /** * Get the Vnx Unity service client for making requests to the Vnxe based * on the passed profile. * * @param accessProfile A reference to the access profile. * * @return A reference to the Vnxe service client. */ protected VNXeApiClient getVnxUnityClient(StorageSystem storage) { VNXeApiClient client = clientFactory.getUnityClient(storage.getIpAddress(), storage.getPortNumber(), storage.getUsername(), storage.getPassword()); return client; } }