Package org.apache.cloudstack.storage.datastore.db

Examples of org.apache.cloudstack.storage.datastore.db.PrimaryDataStoreDetailVO


        sc.setParameters("pool", poolId);

        txn.start();
        expunge(sc);
        for (Map.Entry<String, String> entry : details.entrySet()) {
            PrimaryDataStoreDetailVO detail = new PrimaryDataStoreDetailVO(poolId, entry.getKey(), entry.getValue());
            persist(detail);
        }
        txn.commit();
    }
View Full Code Here


@Component
public class PrimaryDataStoreDetailsDaoImpl extends ResourceDetailsDaoBase<PrimaryDataStoreDetailVO> implements PrimaryDataStoreDetailsDao {

    @Override
    public void addDetail(long resourceId, String key, String value, boolean display) {
        super.addDetail(new PrimaryDataStoreDetailVO(resourceId, key, value, display));
    }
View Full Code Here

public class PrimaryDataStoreDetailsDaoImpl extends ResourceDetailsDaoBase<PrimaryDataStoreDetailVO> implements
        PrimaryDataStoreDetailsDao {

    @Override
    public void addDetail(long resourceId, String key, String value) {
        super.addDetail(new PrimaryDataStoreDetailVO(resourceId, key, value));
    }
View Full Code Here

TOP

Related Classes of org.apache.cloudstack.storage.datastore.db.PrimaryDataStoreDetailVO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.