Skip to content

Commit f24c130

Browse files
authored
Merge pull request #16 from transloadit/export-sdk-docs-1498647926437
Whitespace fixes
2 parents 834b0dd + 9e2db33 commit f24c130

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![Build Status](https://travis-ci.org/transloadit/java-sdk.png?branch=master)](https://travis-ci.org/transloadit/java-sdk)
22

33
## java-sdk
4-
A **Java** Integration for [Transloadit](https://transloadit.com)'s file uploading and encoding service
54

5+
A **Java** Integration for [Transloadit](https://transloadit.com)'s file uploading and encoding service
66

77
## Intro
88

@@ -35,7 +35,6 @@ compile 'com.transloadit.sdk:transloadit:0.0.3'
3535

3636
All interactions with the SDK begin with the `com.transloadit.sdk.Transloadit` class.
3737

38-
3938
### Create an Assembly
4039

4140
To create an assembly, you use the `newAssembly` method.
@@ -80,7 +79,6 @@ public class Main {
8079
}
8180
```
8281

83-
8482
### Get an Assembly
8583

8684
The method, `getAssembly`, retrieves the JSON status of an assembly identified by the given `assembly_Id`.
@@ -115,7 +113,6 @@ You may also get an assembly by url with the `getAssemblyByUrl` method.
115113
AssemblyResponse response = transloadit.getAssemblyByUrl("ASSEMBLY_URL");
116114
```
117115

118-
119116
### Cancel an Assembly
120117

121118
To cancel an executing assembly, you use the `cancelAssembly` method, passing the assembly id as a parameter.
@@ -141,7 +138,6 @@ public class Main {
141138
}
142139
```
143140

144-
145141
### List Assemblies
146142

147143
The method, `listAssemblies`, retrieves an array of assemblies according to the given `options`. Valid `options` can be `page`,
@@ -175,7 +171,6 @@ public class Main {
175171
}
176172
```
177173

178-
179174
### Create a Template
180175

181176
To create a new template, you use the `newTemplate` method, passing the template name as a parameter.
@@ -216,7 +211,6 @@ public class Main {
216211
}
217212
```
218213

219-
220214
### Update a Template
221215

222216
To update a template, you use the `updateTemplate` method, passing the template id and options to update as a parameters.
@@ -255,7 +249,6 @@ public class Main {
255249
}
256250
```
257251

258-
259252
### Delete a Template
260253

261254
To delete a template, you use the `deleteTemplate` method, passing the template id as a parameter.
@@ -282,7 +275,6 @@ public class Main {
282275
}
283276
```
284277

285-
286278
### List Templates
287279

288280
To get a list of all templates under your account, you use the `listTemplates` method.
@@ -310,7 +302,6 @@ public class Main {
310302
}
311303
```
312304

313-
314305
### Get a template
315306

316307
To get a particular template, you use the `getTemplate` method, passing the template id as a parameter.
@@ -335,7 +326,6 @@ public class Main {
335326
}
336327
```
337328

338-
339329
### Get bill
340330

341331
To get your account billing details for a particular month, you use the `getBill` method, passing the month and year as parameters.
@@ -369,7 +359,6 @@ For fully working examples take a look at [examples/](https://github.com/translo
369359

370360
See [Javadoc](http://javadoc.io/doc/com.transloadit.sdk/transloadit/0.0.3) for full API documentation.
371361

372-
373362
## License
374363

375364
[The MIT License](LICENSE).

0 commit comments

Comments
 (0)