Package com.netflix.staash.rest.meta.entity

Examples of com.netflix.staash.rest.meta.entity.PaasStorageEntity


    public String writeMetaEntity(EntityType etype, String payload) throws StorageDoesNotExistException{
        // TODO Auto-generated method stub
        if (payload != null) {
            switch (etype) {
            case STORAGE:
                PaasStorageEntity pse = PaasStorageEntity.builder()
                        .withJsonPayLoad(new JsonObject(payload)).build();
                String retsto = meta.writeMetaEntity(pse);
                cache.addEntityToCache(EntityType.STORAGE, pse);
                return retsto;
            case DB:
View Full Code Here

TOP

Related Classes of com.netflix.staash.rest.meta.entity.PaasStorageEntity

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.