Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.06 KB

File metadata and controls

40 lines (25 loc) · 1.06 KB

comet-java-sdk

@CometBackup on Twitter MIT License

This project is the JAVA SDK and base client for the Comet Server API.

Dependencies

The Comet Java SDK requires:

  • JDK 11
  • jackson-core 2.13.3
  • jackson-databind 2.13.4.1

Simple Usage Example

import com.cometbackup.CometAPI;

public class AdminListUsers {
    public static void main(String[] args) throws Exception {
        var client = new CometAPI("http://127.0.0.1:8060", "admin", "admin");
        for (var user : client.AdminListUsers()) {
            System.out.println(user);
        }
    }
}

More demo code can be found in the /demos directory

Getting Help

Bug reports and pull requests are welcome on GitHub at https://github.com/CometBackup/comet-dotnet-sdk.

You may also submit issues via the ticket system at cometbackup.com.