001/*
002 * Copyright 2002-2020 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      https://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.springframework.jmx.export.metadata;
018
019/**
020 * Base class for all JMX metadata classes.
021 *
022 * @author Rob Harrop
023 * @since 1.2
024 */
025public abstract class AbstractJmxAttribute {
026
027        private String description = "";
028
029        private int currencyTimeLimit = -1;
030
031
032        /**
033         * Set a description for this attribute.
034         */
035        public void setDescription(String description) {
036                this.description = description;
037        }
038
039        /**
040         * Return a description for this attribute.
041         */
042        public String getDescription() {
043                return this.description;
044        }
045
046        /**
047         * Set a currency time limit for this attribute.
048         */
049        public void setCurrencyTimeLimit(int currencyTimeLimit) {
050                this.currencyTimeLimit = currencyTimeLimit;
051        }
052
053        /**
054         * Return a currency time limit for this attribute.
055         */
056        public int getCurrencyTimeLimit() {
057                return this.currencyTimeLimit;
058        }
059
060}