Example usage for twitter4j TwitterAPIConfiguration getCharactersReservedPerMedia

List of usage examples for twitter4j TwitterAPIConfiguration getCharactersReservedPerMedia

Introduction

In this page you can find the example usage for twitter4j TwitterAPIConfiguration getCharactersReservedPerMedia.

Prototype

int getCharactersReservedPerMedia();

Source Link

Usage

From source file:com.freshdigitable.udonroad.module.realm.TwitterAPIConfigurationRealm.java

License:Apache License

TwitterAPIConfigurationRealm(TwitterAPIConfiguration configuration) {
    this.photoSizeLimit = configuration.getPhotoSizeLimit();
    this.shortURLLength = configuration.getShortURLLength();
    this.shortURLLengthHttps = configuration.getShortURLLengthHttps();
    this.charactersReservedPerMedia = configuration.getCharactersReservedPerMedia();
    this.maxMediaPerUpload = configuration.getMaxMediaPerUpload();
}