当前位置: 首页>>代码示例>>Java>>正文


Java LocalFile类代码示例

本文整理汇总了Java中org.embulk.spi.unit.LocalFile的典型用法代码示例。如果您正苦于以下问题:Java LocalFile类的具体用法?Java LocalFile怎么用?Java LocalFile使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


LocalFile类属于org.embulk.spi.unit包,在下文中一共展示了LocalFile类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: localFileToPathString

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
private Function<LocalFile, String> localFileToPathString()
{
    return new Function<LocalFile, String>()
    {
        public String apply(LocalFile file)
        {
            return file.getPath().toString();
        }
    };
}
 
开发者ID:embulk,项目名称:embulk-output-sftp,代码行数:11,代码来源:SftpUtils.java

示例2: transaction

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
@Override
public ConfigDiff transaction(ConfigSource config,
                              int taskCount,
                              FileOutputPlugin.Control control)
{
    PluginTask task = config.loadConfig(PluginTask.class);

    if (task.getP12KeyfilePath().isPresent()) {
        if (task.getP12Keyfile().isPresent()) {
            throw new ConfigException("Setting both p12_keyfile_path and p12_keyfile is invalid");
        }
        try {
            task.setP12Keyfile(Optional.of(LocalFile.of(task.getP12KeyfilePath().get())));
        }
        catch (IOException ex) {
            throw Throwables.propagate(ex);
        }
    }

    if (task.getAuthMethod().getString().equals("json_key")) {
        if (!task.getJsonKeyfile().isPresent()) {
            throw new ConfigException("If auth_method is json_key, you have to set json_keyfile");
        }
    }
    else if (task.getAuthMethod().getString().equals("private_key")) {
        if (!task.getP12Keyfile().isPresent() || !task.getServiceAccountEmail().isPresent()) {
            throw new ConfigException("If auth_method is private_key, you have to set both service_account_email and p12_keyfile");
        }
    }

    return resume(task.dump(), taskCount, control);
}
 
开发者ID:embulk,项目名称:embulk-output-gcs,代码行数:33,代码来源:GcsOutputPlugin.java

示例3: getAvsc

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
@Config("avsc")
LocalFile getAvsc();
 
开发者ID:joker1007,项目名称:embulk-formatter-avro,代码行数:3,代码来源:AvroFormatterPlugin.java

示例4: getSecretKeyFilePath

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
@Config("secret_key_file")
@ConfigDefault("null")
public Optional<LocalFile> getSecretKeyFilePath();
 
开发者ID:embulk,项目名称:embulk-output-sftp,代码行数:4,代码来源:SftpFileOutputPlugin.java

示例5: getP12Keyfile

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
@Config("p12_keyfile")
@ConfigDefault("null")
Optional<LocalFile> getP12Keyfile();
 
开发者ID:embulk,项目名称:embulk-output-gcs,代码行数:4,代码来源:GcsOutputPlugin.java

示例6: getJsonKeyfile

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
@Config("json_keyfile")
@ConfigDefault("null")
Optional<LocalFile> getJsonKeyfile();
 
开发者ID:embulk,项目名称:embulk-output-gcs,代码行数:4,代码来源:GcsOutputPlugin.java

示例7: setSecretKeyFilePath

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
public void setSecretKeyFilePath(Optional<LocalFile> secretKeyFilePath); 
开发者ID:embulk,项目名称:embulk-output-sftp,代码行数:2,代码来源:SftpFileOutputPlugin.java

示例8: setP12Keyfile

import org.embulk.spi.unit.LocalFile; //导入依赖的package包/类
void setP12Keyfile(Optional<LocalFile> p12Keyfile); 
开发者ID:embulk,项目名称:embulk-output-gcs,代码行数:2,代码来源:GcsOutputPlugin.java


注:本文中的org.embulk.spi.unit.LocalFile类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。