Package com.tibco.ep.sb.ads
Class ArtifactDescriptor
- java.lang.Object
-
- com.tibco.ep.sb.ads.ArtifactDescriptor
-
public class ArtifactDescriptor extends Object
Container for the metadata used to register for an artifact.
-
-
Field Summary
Fields Modifier and Type Field Description static String
LATEST_VERSION
Version string representing the latest version of an artifact
-
Constructor Summary
Constructors Constructor Description ArtifactDescriptor(String type, String name, String version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
boolean
getRequiredAtStartup()
String
getType()
String
getVersion()
void
setRequiredAtStartup(boolean value)
Sets whether or not the artifact must be available at startup.
-
-
-
Field Detail
-
LATEST_VERSION
public static final String LATEST_VERSION
Version string representing the latest version of an artifact- Since:
- 10.2
- See Also:
- Constant Field Values
-
-
Method Detail
-
setRequiredAtStartup
public void setRequiredAtStartup(boolean value)
Sets whether or not the artifact must be available at startup.The required at startup attribute defaults to false
- Parameters:
value
- true if the artifact must be available at startup, false otherwise
-
getType
public String getType()
- Returns:
- artifact type
-
getName
public String getName()
- Returns:
- artifact name
-
getVersion
public String getVersion()
- Returns:
- artifact version
-
getRequiredAtStartup
public boolean getRequiredAtStartup()
- Returns:
- true if the artifact must be available at startup, otherwise false
-
-