Search in sources :

Example 1 with ImageStoreImpl

use of com.cloud.storage.image.store.ImageStoreImpl in project cosmic by MissionCriticalCloud.

the class CloudStackImageStoreDriverImpl method getStoreTO.

@Override
public DataStoreTO getStoreTO(final DataStore store) {
    final ImageStoreImpl nfsStore = (ImageStoreImpl) store;
    final NfsTO nfsTO = new NfsTO();
    nfsTO.setRole(store.getRole());
    nfsTO.setUrl(nfsStore.getUri());
    return nfsTO;
}
Also used : ImageStoreImpl(com.cloud.storage.image.store.ImageStoreImpl) NfsTO(com.cloud.agent.api.to.NfsTO)

Aggregations

NfsTO (com.cloud.agent.api.to.NfsTO)1 ImageStoreImpl (com.cloud.storage.image.store.ImageStoreImpl)1