[jboss-cvs] jboss-profiler/java/src/expansion/org/jboss/profiler/exp/adaptor ...

Takuro Okada t2-okada at nri.co.jp
Mon Feb 19 05:50:17 EST 2007


  User: tokada  
  Date: 07/02/19 05:50:17

  Added:       java/src/expansion/org/jboss/profiler/exp/adaptor  Tag:
                        JBossProfiler_Expansion AgentConfig.java
  Log:
  Added some properties for agent connection.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +81 -0     jboss-profiler/java/src/expansion/org/jboss/profiler/exp/adaptor/Attic/AgentConfig.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AgentConfig.java
  ===================================================================
  RCS file: AgentConfig.java
  diff -N AgentConfig.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ AgentConfig.java	19 Feb 2007 10:50:17 -0000	1.1.2.1
  @@ -0,0 +1,81 @@
  +/*
  + * JBoss, Home of Professional Open Source
  + * Copyright 2006, JBoss Inc., and individual contributors as indicated
  + * by the @authors tag. See the copyright.txt in the distribution for a
  + * full listing of individual contributors.
  + *
  + * This is free software; you can redistribute it and/or modify it
  + * under the terms of the GNU Lesser General Public License as
  + * published by the Free Software Foundation; either version 2.1 of
  + * the License, or (at your option) any later version.
  + *
  + * This software is distributed in the hope that it will be useful,
  + * but WITHOUT ANY WARRANTY; without even the implied warranty of
  + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  + * Lesser General Public License for more details.
  + *
  + * You should have received a copy of the GNU Lesser General Public
  + * License along with this software; if not, write to the Free
  + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  + * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  + */
  +
  +package org.jboss.profiler.exp.adaptor;
  +
  +import java.io.Serializable;
  +
  +/**
  + * The connection information of the remote agent.
  + * 
  + * @author Takuro Okada (Nomura Research Institute, Ltd.)
  + * Copyright 2006 Nomura Research Institute, Ltd. All Rights Reserved.
  + * Copyright(c) Information-technology Promotion Agency, Japan. All rights reserved 2006.
  + * Result of Open Source Software Development Activities of Information-technology Promotion Agency, Japan.
  + */
  +public class AgentConfig implements Serializable {
  +    private String serviceName;
  +    private String jmxConnectorUrl;
  +    private String jmxConnectorJndiName;
  +    private String jmxConnectorJndiContextFactory;
  +    private String jaasUserName;
  +    private String jaasPassword;
  +    
  +    public String getJaasPassword() {
  +        return jaasPassword;
  +    }
  +    public void setJaasPassword(String jaasPassword) {
  +        this.jaasPassword = jaasPassword;
  +    }
  +    public String getJaasUserName() {
  +        return jaasUserName;
  +    }
  +    public void setJaasUserName(String jaasUserName) {
  +        this.jaasUserName = jaasUserName;
  +    }
  +    public String getJmxConnectorJndiContextFactory() {
  +        return jmxConnectorJndiContextFactory;
  +    }
  +    public void setJmxConnectorJndiContextFactory(
  +            String jmxConnectorJndiContextFactory) {
  +        this.jmxConnectorJndiContextFactory = jmxConnectorJndiContextFactory;
  +    }
  +    public String getJmxConnectorJndiName() {
  +        return jmxConnectorJndiName;
  +    }
  +    public void setJmxConnectorJndiName(String jmxConnectorJndiName) {
  +        this.jmxConnectorJndiName = jmxConnectorJndiName;
  +    }
  +    public String getJmxConnectorUrl() {
  +        return jmxConnectorUrl;
  +    }
  +    public void setJmxConnectorUrl(String jmxConnectorUrl) {
  +        this.jmxConnectorUrl = jmxConnectorUrl;
  +    }
  +    public String getServiceName() {
  +        return serviceName;
  +    }
  +    public void setServiceName(String serviceName) {
  +        this.serviceName = serviceName;
  +    }
  +
  +}
  
  
  



More information about the jboss-cvs-commits mailing list