All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.asteriskjava.manager.action.DbDelTreeAction Maven / Gradle / Ivy

There is a newer version: 3.39.0
Show newest version
/*
 *  Copyright 2004-2006 Stefan Reuter
 *
 *  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.asteriskjava.manager.action;

/**
 * Recursivly deletes entries in the Asterisk database for a given family and key.

* Available since Asterisk 1.6 * * @author gmi * @since 1.0.0 */ public class DbDelTreeAction extends AbstractManagerAction { private static final long serialVersionUID = 1L; private String family; private String key; /** * Creates a new empty DbDelTreeAction. */ public DbDelTreeAction() { } /** * Creates a new DbDelTreeAction. * * @param family the family of the key * @param key the key of the entries to delete */ public DbDelTreeAction(String family, String key) { this.family = family; this.key = key; } @Override public String getAction() { return "DBDelTree"; } /** * Returns the family of the key to delete. * * @return the family of the key to delete */ public String getFamily() { return family; } /** * Sets the family of the key to delete. * * @param family the family of the key to delete */ public void setFamily(String family) { this.family = family; } /** * Returns the the key to delete. * * @return the key to delete */ public String getKey() { return key; } /** * Sets the key to delete. * * @param key the key to delete */ public void setKey(String key) { this.key = key; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy