Skip to content

Commit 7d8919e

Browse files
ebozdumanharshavardhana
authored andcommitted
Replaces Minio refs with MinIO and minio.io links with min.io (#764)
1 parent cbb7852 commit 7d8919e

File tree

130 files changed

+256
-256
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+256
-256
lines changed

MAINTAINERS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ EOF
3232
```
3333

3434
#### Upload to maven
35-
Upload all artifacts belonging to `io.minio` artifact repository, additionally this step requires you to have access to Minio's trusted private key.
35+
Upload all artifacts belonging to `io.minio` artifact repository, additionally this step requires you to have access to MinIO's trusted private key.
3636
```sh
3737
$ ./gradlew uploadArchives
3838
```
@@ -44,7 +44,7 @@ $ ./gradlew closeAndReleaseRepository
4444
```
4545

4646
### Tag
47-
Tag and sign your release commit, additionally this step requires you to have access to Minio's trusted private key.
47+
Tag and sign your release commit, additionally this step requires you to have access to MinIO's trusted private key.
4848
```
4949
$ export GNUPGHOME=/media/${USER}/Minio2/trusted
5050
$ git tag -s 0.3.0

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Minio Java SDK for Amazon S3 Compatible Cloud Storage [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)
1+
# MinIO Java SDK for Amazon S3 Compatible Cloud Storage [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
22

3-
The Minio Java Client SDK provides simple APIs to access any Amazon S3 compatible object storage server.
3+
The MinIO Java Client SDK provides simple APIs to access any Amazon S3 compatible object storage server.
44

5-
This quickstart guide will show you how to install the client SDK and execute an example java program. For a complete list of APIs and examples, please take a look at the [Java Client API Reference](http://docs.minio.io/docs/java-client-api-reference) documentation.
5+
This quickstart guide will show you how to install the client SDK and execute an example java program. For a complete list of APIs and examples, please take a look at the [Java Client API Reference](http://docs.min.io/docs/java-client-api-reference) documentation.
66

77
## Minimum Requirements
88
Java 1.8 or above, with one of the following environments:
@@ -40,7 +40,7 @@ You need three items in order to connect to an object storage server.
4040
| Access Key | Access key is like user ID that uniquely identifies your account. |
4141
| Secret Key | Secret key is the password to your account. |
4242

43-
For the following example, we will use a freely hosted Minio server running at [https://play.minio.io:9000](https://play.minio.io:9000). Feel free to use this service for test and development. Access credentials shown in this example are open to the public.
43+
For the following example, we will use a freely hosted MinIO server running at [https://play.min.io:9000](https://play.min.io:9000). Feel free to use this service for test and development. Access credentials shown in this example are open to the public.
4444

4545
#### FileUploader.java
4646
```java
@@ -56,8 +56,8 @@ import io.minio.errors.MinioException;
5656
public class FileUploader {
5757
public static void main(String[] args) throws NoSuchAlgorithmException, IOException, InvalidKeyException, XmlPullParserException {
5858
try {
59-
// Create a minioClient with the Minio Server name, Port, Access key and Secret key.
60-
MinioClient minioClient = new MinioClient("https://play.minio.io:9000", "Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG");
59+
// Create a minioClient with the MinIO Server name, Port, Access key and Secret key.
60+
MinioClient minioClient = new MinioClient("https://play.min.io:9000", "Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG");
6161

6262
// Check if the bucket already exists.
6363
boolean isExist = minioClient.bucketExists("asiatrip");
@@ -95,32 +95,32 @@ mc ls play/asiatrip/
9595
## API Reference
9696
The full API Reference is available here.
9797

98-
* [Complete API Reference](https://docs.minio.io/docs/java-client-api-reference)
98+
* [Complete API Reference](https://docs.min.io/docs/java-client-api-reference)
9999

100100
### API Reference: Bucket Operations
101-
* [`makeBucket`](https://docs.minio.io/docs/java-client-api-reference#makeBucket)
102-
* [`listBuckets`](https://docs.minio.io/docs/java-client-api-reference#listBuckets)
103-
* [`bucketExists`](https://docs.minio.io/docs/java-client-api-reference#bucketExists)
104-
* [`removeBucket`](https://docs.minio.io/docs/java-client-api-reference#removeBucket)
105-
* [`listObjects`](https://docs.minio.io/docs/java-client-api-reference#listObjects)
106-
* [`listIncompleteUploads`](https://docs.minio.io/docs/java-client-api-reference#listIncompleteUploads)
101+
* [`makeBucket`](https://docs.min.io/docs/java-client-api-reference#makeBucket)
102+
* [`listBuckets`](https://docs.min.io/docs/java-client-api-reference#listBuckets)
103+
* [`bucketExists`](https://docs.min.io/docs/java-client-api-reference#bucketExists)
104+
* [`removeBucket`](https://docs.min.io/docs/java-client-api-reference#removeBucket)
105+
* [`listObjects`](https://docs.min.io/docs/java-client-api-reference#listObjects)
106+
* [`listIncompleteUploads`](https://docs.min.io/docs/java-client-api-reference#listIncompleteUploads)
107107

108108
### API Reference: Object Operations
109-
* [`getObject`](https://docs.minio.io/docs/java-client-api-reference#getObject)
110-
* [`putObject`](https://docs.minio.io/docs/java-client-api-reference#putObject)
111-
* [`copyObject`](https://docs.minio.io/docs/java-client-api-reference#copyObject)
112-
* [`statObject`](https://docs.minio.io/docs/java-client-api-reference#statObject)
113-
* [`removeObject`](https://docs.minio.io/docs/java-client-api-reference#removeObject)
114-
* [`removeIncompleteUpload`](https://docs.minio.io/docs/java-client-api-reference#removeIncompleteUpload)
109+
* [`getObject`](https://docs.min.io/docs/java-client-api-reference#getObject)
110+
* [`putObject`](https://docs.min.io/docs/java-client-api-reference#putObject)
111+
* [`copyObject`](https://docs.min.io/docs/java-client-api-reference#copyObject)
112+
* [`statObject`](https://docs.min.io/docs/java-client-api-reference#statObject)
113+
* [`removeObject`](https://docs.min.io/docs/java-client-api-reference#removeObject)
114+
* [`removeIncompleteUpload`](https://docs.min.io/docs/java-client-api-reference#removeIncompleteUpload)
115115

116116
### API Reference: Presigned Operations
117-
* [`presignedGetObject`](https://docs.minio.io/docs/java-client-api-reference#presignedGetObject)
118-
* [`presignedPutObject`](https://docs.minio.io/docs/java-client-api-reference#presignedPutObject)
119-
* [`presignedPostPolicy`](https://docs.minio.io/docs/java-client-api-reference#presignedPostPolicy)
117+
* [`presignedGetObject`](https://docs.min.io/docs/java-client-api-reference#presignedGetObject)
118+
* [`presignedPutObject`](https://docs.min.io/docs/java-client-api-reference#presignedPutObject)
119+
* [`presignedPostPolicy`](https://docs.min.io/docs/java-client-api-reference#presignedPostPolicy)
120120

121121
### API Reference: Bucket Policy Operations
122-
* [`getBucketPolicy`](https://docs.minio.io/docs/java-client-api-reference#getBucketPolicy)
123-
* [`setBucketPolicy`](https://docs.minio.io/docs/java-client-api-reference#setBucketPolicy)
122+
* [`getBucketPolicy`](https://docs.min.io/docs/java-client-api-reference#getBucketPolicy)
123+
* [`setBucketPolicy`](https://docs.min.io/docs/java-client-api-reference#setBucketPolicy)
124124

125125
## Full Examples
126126

@@ -160,8 +160,8 @@ The full API Reference is available here.
160160
* [PutObjectEncryptedS3.java](https://github.com/minio/minio-java/tree/master/examples/PutObjectEncryptedS3.java)
161161

162162
## Explore Further
163-
* [Complete Documentation](https://docs.minio.io)
164-
* [Minio Java Client SDK API Reference](https://docs.minio.io/docs/java-client-api-reference)
163+
* [Complete Documentation](https://docs.min.io)
164+
* [Minio Java Client SDK API Reference](https://docs.min.io/docs/java-client-api-reference)
165165
* [Build your own Photo API Service - Full Application Example ](https://github.com/minio/minio-java-rest-example)
166166

167167
## Contribute

README_zh_CN.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# 适用于与Amazon S3兼容的云存储的Minio Java SDK [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)
1+
# 适用于与Amazon S3兼容的云存储的Minio Java SDK [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
22

33
Minio Java Client SDK提供简单的API来访问任何与Amazon S3兼容的对象存储服务。
44

5-
本快速入门指南将向你展示如何安装客户端SDK并执行示例java程序。有关API和示例的完整列表,请查看[Java Client API Reference](http://docs.minio.io/docs/java-client-api-reference)文档。
5+
本快速入门指南将向你展示如何安装客户端SDK并执行示例java程序。有关API和示例的完整列表,请查看[Java Client API Reference](http://docs.min.io/docs/java-client-api-reference)文档。
66

77
## 最低需求
88
Java 1.8或更高版本:
@@ -41,7 +41,7 @@ dependencies {
4141
| Secret Key | Secret key是你账户的密码。 |
4242

4343

44-
在下面的例子的中,我们将使用一个运行在[https://play.minio.io:9000](https://play.minio.io:9000)的免费托管的Minio服务。你可以随意使用此服务进行测试和开发。此示例中显示的访问凭据是公开的。
44+
在下面的例子的中,我们将使用一个运行在[https://play.min.io:9000](https://play.min.io:9000)的免费托管的Minio服务。你可以随意使用此服务进行测试和开发。此示例中显示的访问凭据是公开的。
4545

4646
#### FileUploader.java
4747

@@ -59,7 +59,7 @@ public class FileUploader {
5959
public static void main(String[] args) throws NoSuchAlgorithmException, IOException, InvalidKeyException, XmlPullParserException {
6060
try {
6161
// 使用Minio服务的URL,端口,Access key和Secret key创建一个MinioClient对象
62-
MinioClient minioClient = new MinioClient("https://play.minio.io:9000", "Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG");
62+
MinioClient minioClient = new MinioClient("https://play.min.io:9000", "Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG");
6363

6464
// 检查存储桶是否已经存在
6565
boolean isExist = minioClient.bucketExists("asiatrip");
@@ -98,32 +98,32 @@ mc ls play/asiatrip/
9898

9999
下面链接是完整的API文档
100100

101-
* [API完整文档](https://docs.minio.io/docs/java-client-api-reference)
101+
* [API完整文档](https://docs.min.io/docs/java-client-api-reference)
102102

103103
### API文档: 操作存储桶
104-
* [`makeBucket`](https://docs.minio.io/docs/java-client-api-reference#makeBucket)
105-
* [`listBuckets`](https://docs.minio.io/docs/java-client-api-reference#listBuckets)
106-
* [`bucketExists`](https://docs.minio.io/docs/java-client-api-reference#bucketExists)
107-
* [`removeBucket`](https://docs.minio.io/docs/java-client-api-reference#removeBucket)
108-
* [`listObjects`](https://docs.minio.io/docs/java-client-api-reference#listObjects)
109-
* [`listIncompleteUploads`](https://docs.minio.io/docs/java-client-api-reference#listIncompleteUploads)
104+
* [`makeBucket`](https://docs.min.io/docs/java-client-api-reference#makeBucket)
105+
* [`listBuckets`](https://docs.min.io/docs/java-client-api-reference#listBuckets)
106+
* [`bucketExists`](https://docs.min.io/docs/java-client-api-reference#bucketExists)
107+
* [`removeBucket`](https://docs.min.io/docs/java-client-api-reference#removeBucket)
108+
* [`listObjects`](https://docs.min.io/docs/java-client-api-reference#listObjects)
109+
* [`listIncompleteUploads`](https://docs.min.io/docs/java-client-api-reference#listIncompleteUploads)
110110

111111
### API文档: 操作文件对象
112-
* [`getObject`](https://docs.minio.io/docs/java-client-api-reference#getObject)
113-
* [`putObject`](https://docs.minio.io/docs/java-client-api-reference#putObject)
114-
* [`copyObject`](https://docs.minio.io/docs/java-client-api-reference#copyObject)
115-
* [`statObject`](https://docs.minio.io/docs/java-client-api-reference#statObject)
116-
* [`removeObject`](https://docs.minio.io/docs/java-client-api-reference#removeObject)
117-
* [`removeIncompleteUpload`](https://docs.minio.io/docs/java-client-api-reference#removeIncompleteUpload)
112+
* [`getObject`](https://docs.min.io/docs/java-client-api-reference#getObject)
113+
* [`putObject`](https://docs.min.io/docs/java-client-api-reference#putObject)
114+
* [`copyObject`](https://docs.min.io/docs/java-client-api-reference#copyObject)
115+
* [`statObject`](https://docs.min.io/docs/java-client-api-reference#statObject)
116+
* [`removeObject`](https://docs.min.io/docs/java-client-api-reference#removeObject)
117+
* [`removeIncompleteUpload`](https://docs.min.io/docs/java-client-api-reference#removeIncompleteUpload)
118118

119119
### API文档: Presigned操作
120-
* [`presignedGetObject`](https://docs.minio.io/docs/java-client-api-reference#presignedGetObject)
121-
* [`presignedPutObject`](https://docs.minio.io/docs/java-client-api-reference#presignedPutObject)
122-
* [`presignedPostPolicy`](https://docs.minio.io/docs/java-client-api-reference#presignedPostPolicy)
120+
* [`presignedGetObject`](https://docs.min.io/docs/java-client-api-reference#presignedGetObject)
121+
* [`presignedPutObject`](https://docs.min.io/docs/java-client-api-reference#presignedPutObject)
122+
* [`presignedPostPolicy`](https://docs.min.io/docs/java-client-api-reference#presignedPostPolicy)
123123

124124
### API文档: 操作存储桶策略
125-
* [`getBucketPolicy`](https://docs.minio.io/docs/java-client-api-reference#getBucketPolicy)
126-
* [`setBucketPolicy`](https://docs.minio.io/docs/java-client-api-reference#setBucketPolicy)
125+
* [`getBucketPolicy`](https://docs.min.io/docs/java-client-api-reference#getBucketPolicy)
126+
* [`setBucketPolicy`](https://docs.min.io/docs/java-client-api-reference#setBucketPolicy)
127127

128128
## 完整示例
129129

@@ -155,8 +155,8 @@ mc ls play/asiatrip/
155155
* [GetBucketPolicy.Java](https://github.com/minio/minio-java/tree/master/examples/GetBucketPolicy.java)
156156

157157
## 了解更多
158-
* [Minio官方文档](https://docs.minio.io)
159-
* [Minio Java Client SDK API文档](https://docs.minio.io/docs/java-client-api-reference)
158+
* [Minio官方文档](https://docs.min.io)
159+
* [Minio Java Client SDK API文档](https://docs.min.io/docs/java-client-api-reference)
160160
* [创建属于你的照片API服务-完整示例](https://github.com/minio/minio-java-rest-example)
161161

162162
## 贡献

api/src/main/java/io/minio/AwsS3Endpoints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 Minio, Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 MinIO, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

api/src/main/java/io/minio/BucketEventListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage,
3-
* (C) 2018 Minio, Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage,
3+
* (C) 2018 MinIO, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

api/src/main/java/io/minio/BucketRegionCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 Minio, Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 MinIO, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

api/src/main/java/io/minio/ChunkedInputStream.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage,
3-
* (C) 2017 Minio, Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage,
3+
* (C) 2017 MinIO, Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

api/src/main/java/io/minio/CopyConditions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage,
3-
* (C) 2017 Minio,Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage,
3+
* (C) 2017 MinIO,Inc.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

api/src/main/java/io/minio/DateFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 Minio, Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 MinIO, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

api/src/main/java/io/minio/Digest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Minio Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 Minio, Inc.
2+
* MinIO Java SDK for Amazon S3 Compatible Cloud Storage, (C) 2015 MinIO, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)