KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > profileservice > profiles > p0 > beans > JBossManagedConnectionPool


1 package org.jboss.test.profileservice.profiles.p0.beans;
2
3 import org.jboss.annotation.management.ManagedProperty;
4 import org.jboss.annotation.management.ViewUse;
5
6 /**
7  * @author ccrouch@jboss.org
8  * @version $Revision$
9  */

10 public class JBossManagedConnectionPool {
11     @ManagedProperty (use= ViewUse.CONFIGURATION)
12     public int blockingTimeoutMillis;
13     @ManagedProperty (use= ViewUse.STATISTIC)
14     public int connectionCreatedCount;
15 }
16
Popular Tags