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

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

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

KMSClientProvider.checkNotEmpty介绍

暂无

代码示例

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

private KeyVersion rollNewVersionInternal(String name, byte[] material)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 Map<String, String> jsonMaterial = new HashMap<String, String>();
 if (material != null) {
  jsonMaterial.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonMaterial,
   HttpURLConnection.HTTP_OK, Map.class);
 KeyVersion keyVersion = parseJSONKeyVersion(response);
 encKeyVersionQueue.drain(name);
 return keyVersion;
}

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

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

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

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

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

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

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

@Override
public void deleteKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_DELETE);
 call(conn, null, HttpURLConnection.HTTP_OK, null);
}

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

@Override
public void deleteKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_DELETE);
 call(conn, null, HttpURLConnection.HTTP_OK, null);
}

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

@Override
public void deleteKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_DELETE);
 call(conn, null, HttpURLConnection.HTTP_OK, null);
}

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

@Override
public void deleteKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_DELETE);
 call(conn, null, HttpURLConnection.HTTP_OK, null);
}

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

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public Metadata getMetadata(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.METADATA_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONMetadata(response);
}

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

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public Metadata getMetadata(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.METADATA_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONMetadata(response);
}

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

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public Metadata getMetadata(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.METADATA_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONMetadata(response);
}

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

@Override
public Metadata getMetadata(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.METADATA_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONMetadata(response);
}

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

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

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

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

相关文章

微信公众号

最新文章

更多