org.openbp.jaspira.plugin.PluginProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openbp-cockpit Show documentation
Show all versions of openbp-cockpit Show documentation
OpenBP Cockpit (graphical process modeler)
The newest version!
/*
* 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.openbp.jaspira.plugin;
/**
* Plugin profile.
*/
public class PluginProfile
{
/** Plugin class name */
private String className;
/** Plugin name */
private String name;
/** Plugin title */
private String title;
/** Description */
private String description;
/** Plugin vendor */
private String vendor;
/** Plugin version */
private String version;
/** Conditional expression that determines if the plugin should be active */
private String condition;
/**
* Default constructor.
*/
public PluginProfile()
{
}
/**
* Gets the plugin class name.
*/
public String getClassName()
{
return className;
}
/**
* Sets the plugin class name.
*/
public void setClassName(String className)
{
this.className = className;
}
/**
* Gets the plugin name.
*/
public String getName()
{
return name;
}
/**
* Sets the plugin name.
*/
public void setName(String name)
{
this.name = name;
}
/**
* Gets the plugin title.
*/
public String getTitle()
{
return title;
}
/**
* Sets the plugin title.
*/
public void setTitle(String title)
{
this.title = title;
}
/**
* Gets the description.
*/
public String getDescription()
{
return description;
}
/**
* Sets the description.
*/
public void setDescription(String description)
{
this.description = description;
}
/**
* Gets the plugin vendor.
*/
public String getVendor()
{
return vendor;
}
/**
* Sets the plugin vendor.
*/
public void setVendor(String vendor)
{
this.vendor = vendor;
}
/**
* Gets the plugin version.
*/
public String getVersion()
{
return version;
}
/**
* Sets the plugin version.
*/
public void setVersion(String version)
{
this.version = version;
}
/**
* Gets the conditional expression that determines if the plugin should be active.
*/
public String getCondition()
{
return condition;
}
/**
* Sets the conditional expression that determines if the plugin should be active.
*/
public void setCondition(String condition)
{
this.condition = condition;
}
}