List of usage examples for twitter4j TwitterAPIConfiguration getPhotoSizeLimit
int getPhotoSizeLimit();
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(); }