blob: 1a4f87fb37a6386a01704884e630ea74d4d11774 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.directory.server.tools;
import java.io.Serializable;
/**
* This abstract class defines a ToolCommand, it must be extended by every type of command
*/
public abstract class BaseToolCommand implements ToolCommand
{
private final String name;
protected int port;
protected String host;
protected String password;
protected String user;
protected String auth;
private boolean debugEnabled = false;
private boolean verboseEnabled = false;
private boolean quietEnabled = false;
private String version;
// The listeners
protected ToolCommandListener outputListener;
protected ToolCommandListener errorListener;
protected ToolCommandListener exceptionListener;
public BaseToolCommand( String name )
{
this.name = name;
}
public String getName()
{
return this.name;
}
public String toString()
{
return getName();
}
public void setVersion( String version )
{
this.version = version;
}
public String getVersion()
{
return version;
}
public void setDebugEnabled( boolean debugEnabled )
{
this.debugEnabled = debugEnabled;
}
public boolean isDebugEnabled()
{
return debugEnabled;
}
public void setVerboseEnabled( boolean verboseEnabled )
{
this.verboseEnabled = verboseEnabled;
}
public boolean isVerboseEnabled()
{
return verboseEnabled;
}
public void setQuietEnabled( boolean quietEnabled )
{
this.quietEnabled = quietEnabled;
}
public boolean isQuietEnabled()
{
return quietEnabled;
}
/**
* Notifies the Output Listener
* @param o
*/
protected void notifyOutputListener( Serializable o )
{
if ( this.outputListener != null )
{
this.outputListener.notify( o );
}
}
/**
* Notifies the Error Listener
* @param o
*/
protected void notifyErrorListener( Serializable o )
{
if ( this.errorListener != null )
{
this.errorListener.notify( o );
}
}
/**
* Notifies the Exception Listener
* @param o
*/
protected void notifyExceptionListener( Serializable o )
{
if ( this.exceptionListener != null )
{
this.exceptionListener.notify( o );
}
}
}