[Mc4j-cvs] mc4j/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/bean/parameter DParameter.
Brought to you by:
ghinkl
From: Greg H. <gh...@us...> - 2006-04-12 19:11:40
|
Update of /cvsroot/mc4j/mc4j/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/bean/parameter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18666/modules/ems/src/ems-impl/org/mc4j/ems/impl/jmx/connection/bean/parameter Added Files: DParameter.java Log Message: Merging EMS into head for the 2.0 release work --- NEW FILE: DParameter.java --- /* * Copyright 2002-2004 Greg Hinkle * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.mc4j.ems.impl.jmx.connection.bean.parameter; import org.mc4j.ems.connection.bean.parameter.EmsParameter; import javax.management.MBeanParameterInfo; /** * Created: Jul 20, 2005 1:12:14 AM * * @author Greg Hinkle (gh...@us...) * @version $Revision: 1.2 $($Author: ghinkl $ / $Date: 2006/04/12 19:11:36 $) */ public class DParameter implements EmsParameter { private String name; private String description; private String type; public DParameter(MBeanParameterInfo parameterInfo) { this.name = parameterInfo.getName(); this.description = parameterInfo.getDescription(); this.type = parameterInfo.getType(); } public String getName() { return name; } public String getDescription() { return description; } public String getType() { return type; } } |