Class SeriesInfo
- java.lang.Object
-
- com.inet.taskplanner.server.api.common.AbstractInfo
-
- com.inet.taskplanner.server.api.series.SeriesInfo
-
public class SeriesInfo extends AbstractInfo
Contains information about how this kind of series is to be presented, what options with what type it has and how they interact with each other.- Since:
- taskplanner 3.0
-
-
Constructor Summary
Constructors Constructor Description SeriesInfo(java.lang.String extensionName, java.lang.String displayName, java.lang.String description, java.net.URL iconURL, java.lang.String helpKey, java.util.List<Field> fields)
Creates a new SeriesInfo instance with all optional fields.
-
Method Summary
-
Methods inherited from class com.inet.taskplanner.server.api.common.AbstractInfo
getDescription, getDisplayName, getExtensionName, getFields, getHelpKey, getIconURL
-
-
-
-
Constructor Detail
-
SeriesInfo
public SeriesInfo(java.lang.String extensionName, java.lang.String displayName, java.lang.String description, java.net.URL iconURL, java.lang.String helpKey, java.util.List<Field> fields)
Creates a new SeriesInfo instance with all optional fields.- Parameters:
extensionName
- unique name of the job extension. There must be aSeriesFactory
with this name.displayName
- localized display name of this jobdescription
- localized description of this jobiconURL
- URL to the icon for this jobhelpKey
- key of the help page to open for this jobfields
- list of fields this job has- Since:
- taskplanner 3.0
-
-