Skip to content

CometBackup/comet-java-sdk

Repository files navigation

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.

About

Java SDK for the Comet API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages