org.apache.hadoop.crypto.key.kms.KMSClientProvider.checkNotNull()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(11.6k)|赞(0)|评价(0)|浏览(115)

本文整理了Java中org.apache.hadoop.crypto.key.kms.KMSClientProvider.checkNotNull()方法的一些代码示例,展示了KMSClientProvider.checkNotNull()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。KMSClientProvider.checkNotNull()方法的具体详情如下:
包路径:org.apache.hadoop.crypto.key.kms.KMSClientProvider
类名称:KMSClientProvider
方法名:checkNotNull

KMSClientProvider.checkNotNull介绍

暂无

代码示例

代码示例来源:origin: io.hops/hadoop-common

public static String checkNotEmpty(String s, String name)
  throws IllegalArgumentException {
 checkNotNull(s, name);
 if (s.isEmpty()) {
  throw new IllegalArgumentException("Parameter '" + name +
    "' cannot be empty");
 }
 return s;
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

public static String checkNotEmpty(String s, String name)
  throws IllegalArgumentException {
 checkNotNull(s, name);
 if (s.isEmpty()) {
  throw new IllegalArgumentException("Parameter '" + name +
    "' cannot be empty");
 }
 return s;
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

public static String checkNotEmpty(String s, String name)
  throws IllegalArgumentException {
 checkNotNull(s, name);
 if (s.isEmpty()) {
  throw new IllegalArgumentException("Parameter '" + name +
    "' cannot be empty");
 }
 return s;
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

public static String checkNotEmpty(String s, String name)
  throws IllegalArgumentException {
 checkNotNull(s, name);
 if (s.isEmpty()) {
  throw new IllegalArgumentException("Parameter '" + name +
    "' cannot be empty");
 }
 return s;
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

@Override
public KeyVersion createKey(String name, byte[] material, Options options)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return createKeyInternal(name, material, options);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

@Override
public KeyVersion rollNewVersion(String name, byte[] material)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return rollNewVersionInternal(name, material);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

@Override
public KeyVersion rollNewVersion(String name, byte[] material)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return rollNewVersionInternal(name, material);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

@Override
public KeyVersion createKey(String name, byte[] material, Options options)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return createKeyInternal(name, material, options);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: io.hops/hadoop-common

@Override
public KeyVersion rollNewVersion(String name, byte[] material)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return rollNewVersionInternal(name, material);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

@Override
public KeyVersion rollNewVersion(String name, byte[] material)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return rollNewVersionInternal(name, material);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: io.hops/hadoop-common

@Override
public KeyVersion createKey(String name, byte[] material, Options options)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return createKeyInternal(name, material, options);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

@Override
public KeyVersion createKey(String name, byte[] material, Options options)
  throws IOException {
 checkNotNull(material, "material");
 try {
  return createKeyInternal(name, material, options);
 } catch (NoSuchAlgorithmException ex) {
  throw new RuntimeException("It should not happen", ex);
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

@Override
 public void fillQueueForKey(String keyName,
   Queue<EncryptedKeyVersion> keyQueue, int numEKVs) throws IOException {
  checkNotNull(keyName, "keyName");
  Map<String, String> params = new HashMap<String, String>();
  params.put(KMSRESTConstants.EEK_OP, KMSRESTConstants.EEK_GENERATE);
  params.put(KMSRESTConstants.EEK_NUM_KEYS, "" + numEKVs);
  URL url = createURL(KMSRESTConstants.KEY_RESOURCE, keyName,
    KMSRESTConstants.EEK_SUB_RESOURCE, params);
  HttpURLConnection conn = createConnection(url, HTTP_GET);
  conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
  List response = call(conn, null,
    HttpURLConnection.HTTP_OK, List.class);
  List<EncryptedKeyVersion> ekvs =
    parseJSONEncKeyVersion(keyName, response);
  keyQueue.addAll(ekvs);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

@Override
 public void fillQueueForKey(String keyName,
   Queue<EncryptedKeyVersion> keyQueue, int numEKVs) throws IOException {
  checkNotNull(keyName, "keyName");
  Map<String, String> params = new HashMap<String, String>();
  params.put(KMSRESTConstants.EEK_OP, KMSRESTConstants.EEK_GENERATE);
  params.put(KMSRESTConstants.EEK_NUM_KEYS, "" + numEKVs);
  URL url = createURL(KMSRESTConstants.KEY_RESOURCE, keyName,
    KMSRESTConstants.EEK_SUB_RESOURCE, params);
  HttpURLConnection conn = createConnection(url, HTTP_GET);
  conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
  List response = call(conn, null,
    HttpURLConnection.HTTP_OK, List.class);
  List<EncryptedKeyVersion> ekvs =
    parseJSONEncKeyVersion(keyName, response);
  keyQueue.addAll(ekvs);
 }
}

代码示例来源:origin: io.hops/hadoop-common

@Override
 public void fillQueueForKey(String keyName,
   Queue<EncryptedKeyVersion> keyQueue, int numEKVs) throws IOException {
  checkNotNull(keyName, "keyName");
  Map<String, String> params = new HashMap<String, String>();
  params.put(KMSRESTConstants.EEK_OP, KMSRESTConstants.EEK_GENERATE);
  params.put(KMSRESTConstants.EEK_NUM_KEYS, "" + numEKVs);
  URL url = createURL(KMSRESTConstants.KEY_RESOURCE, keyName,
    KMSRESTConstants.EEK_SUB_RESOURCE, params);
  HttpURLConnection conn = createConnection(url, HTTP_GET);
  conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
  List response = call(conn, null,
    HttpURLConnection.HTTP_OK, List.class);
  List<EncryptedKeyVersion> ekvs =
    parseJSONEncKeyVersion(keyName, response);
  keyQueue.addAll(ekvs);
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

@Override
 public void fillQueueForKey(String keyName,
   Queue<EncryptedKeyVersion> keyQueue, int numEKVs) throws IOException {
  checkNotNull(keyName, "keyName");
  Map<String, String> params = new HashMap<String, String>();
  params.put(KMSRESTConstants.EEK_OP, KMSRESTConstants.EEK_GENERATE);
  params.put(KMSRESTConstants.EEK_NUM_KEYS, "" + numEKVs);
  URL url = createURL(KMSRESTConstants.KEY_RESOURCE, keyName,
    KMSRESTConstants.EEK_SUB_RESOURCE, params);
  HttpURLConnection conn = createConnection(url, HTTP_GET);
  conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
  List response = call(conn, null,
    HttpURLConnection.HTTP_OK, List.class);
  List<EncryptedKeyVersion> ekvs =
    parseJSONEncKeyVersion(keyName, response);
  keyQueue.addAll(ekvs);
 }
}

代码示例来源:origin: io.hops/hadoop-common

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

相关文章

微信公众号

最新文章

更多