All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.l10n.source.service.SourceService Maven / Gradle / Ivy

There is a newer version: 0.7.3
Show newest version
/*
 * Copyright 2019-2022 VMware, Inc.
 * SPDX-License-Identifier: EPL-2.0
 */
package com.vmware.l10n.source.service;

import com.vmware.vip.common.l10n.source.dto.StringSourceDTO;

/**
 * This class processes strings which need to translate.
 */
public interface SourceService {
    /**
     * Cache strings to be translated.
     * 
     * @param stringSourceDTO the object which packages source
     * @return cache result, true represents success and false represents failed.
     */
    public boolean cacheSource(StringSourceDTO stringSourceDTO);
    
    
    /**
     * merge and write the collection source to cached file
     */
    public void writeSourceToCachedFile() ;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy