オブジェクト プールにオブジェクトを追加しようとしています。これにはApache Commons Poolを使用しています。
私のコードは次のとおりです。
public ObjectPool<OAuthConsumer> consumerPool;
public ObjectPool<OAuthConsumer> consumerPool;
public void buildConsumerPool(){
//setting the config path
PropertyHandler.setConfigPath("/twitter.properties");
//fetching required tokens for all apps
String consumerKeySet = PropertyHandler.getProperty("consumerKey");
String consumerSecretSet = PropertyHandler.getProperty("consumerSecret");
String accessTokenSet = PropertyHandler.getProperty("accessToken");
String tokenSecretSet = PropertyHandler.getProperty("tokenSecret");
String[] splitconsumerKeys = consumerKeySet.split(",");
String[] splitconsumerSecret = consumerSecretSet.split(".");
String[] splitaccessToken = accessTokenSet.split(",");
String[] splittokenSecret = tokenSecretSet.split(".");
//creating consumer objects for each app
for (int numberOfAccounts = 0; numberOfAccounts < splitconsumerKeys.length; numberOfAccounts++) {
String consumerKey = splitconsumerKeys[numberOfAccounts];
String consumerSecret = splitconsumerSecret[numberOfAccounts];
String accessToken = splitaccessToken[numberOfAccounts];
String tokenSecret = splittokenSecret[numberOfAccounts];
OAuthConsumer consumer = new CommonsHttpOAuthConsumer(consumerKey, consumerSecret);
consumer.setTokenWithSecret(accessToken, tokenSecret);
}
ここで、以前に作成したプールにコンシューマー オブジェクトを追加したいと考えています。それ、どうやったら出来るの?