Package com.emc.storageos.model

Examples of com.emc.storageos.model.StringHashMapEntry


        this.allowed = allowedChangeOperationEnums != null && !allowedChangeOperationEnums.isEmpty();
        this.notAllowedReason = notAllowedReason;
       
        if (allowedChangeOperationEnums != null) {
            for (VirtualPoolChangeOperationEnum allowedChangeOperationEnum : allowedChangeOperationEnums) {
                getAllowedChangeOperations().add(new StringHashMapEntry(allowedChangeOperationEnum.name(), allowedChangeOperationEnum.toString()));
            }
        }
    }
View Full Code Here


    public List<StringHashMapEntry> marshal(Map<String,String> map) {
        if ( map == null ) return  (ArrayList<StringHashMapEntry>) null;
        List<StringHashMapEntry> list = new ArrayList<StringHashMapEntry>();
        if (map != null) {
            for ( Entry<String,String> entry : map.entrySet()) {
                StringHashMapEntry listEnt = new StringHashMapEntry(entry.getKey(),entry.getValue());
                list.add(listEnt);
            }
        }
        return list;
    }
View Full Code Here

        this.allowed = allowedChangeOperationEnums != null && !allowedChangeOperationEnums.isEmpty();
        this.notAllowedReason = notAllowedReason;
       
        if ( allowedChangeOperationEnums != null) {
            for (VirtualPoolChangeOperationEnum allowedChangeOperationEnum : allowedChangeOperationEnums) {
                getAllowedChangeOperations().add(new StringHashMapEntry(allowedChangeOperationEnum.name(), allowedChangeOperationEnum.toString()));
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.StringHashMapEntry

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.