public class JazzProcess extends Object
See the Jazz website for details:
https://jazz.net/
Modifier and Type | Field and Description |
---|---|
static String |
NAMESPACE_PREFIX |
static String |
NAMESPACE_URI |
Modifier and Type | Method and Description |
---|---|
static String |
getGlobalConfigurationAware(ServiceProvider provider)
Returns the value of the
"http://jazz.net/xmlns/prod/jazz/process/1.0/globalConfigurationAware" property,
which indicates the level of support of Jazz Global Configuration. |
static boolean |
getSupportContributionsToLinkIndexProvider(ServiceProvider provider)
Returns the value of the
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportContributionsToLinkIndexProvider" property,
which indicates whether the application provides a TRS feed that populates the Link Index Provider with information for the target application. |
static boolean |
isSupportLinkDiscoveryViaLinkIndexProvider(ServiceProvider provider)
Returns the value of the
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportLinkDiscoveryViaLinkIndexProvider" property,
which indicates whether the application queries the Link Index Provider to get information about incoming links from other applications. |
static QName |
qname(String localPart) |
static void |
setGlobalConfigurationAware(ServiceProvider provider,
String value)
Sets the value of the
"http://jazz.net/xmlns/prod/jazz/process/1.0/globalConfigurationAware" property,
which indicates the level of support of Jazz Global Configuration. |
static void |
setSupportContributionsToLinkIndexProvider(ServiceProvider provider,
boolean value)
Sets the value of the
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportContributionsToLinkIndexProvider" property,
which indicates whether the application provides a TRS feed that populates the Link Index Provider with information for the target application. |
static void |
setSupportLinkDiscoveryViaLinkIndexProvider(ServiceProvider provider,
boolean value)
Sets the value of the
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportLinkDiscoveryViaLinkIndexProvider" property,
which indicates whether the application queries the Link Index Provider to get information about incoming links from other applications. |
public static final String NAMESPACE_URI
public static final String NAMESPACE_PREFIX
public static String getGlobalConfigurationAware(ServiceProvider provider)
"http://jazz.net/xmlns/prod/jazz/process/1.0/globalConfigurationAware"
property,
which indicates the level of support of Jazz Global Configuration.
Value might be:
"yes"
: the application supports configurations and versioned artifacts."compatible"
: the application does not support configurations, but it can still link to or interact with versioned
artifacts."no"
: the application has no support for configurations or versioning.provider
- the service providerglobalConfigurationAware
property, "no"
if the property is not set.public static void setGlobalConfigurationAware(ServiceProvider provider, String value)
"http://jazz.net/xmlns/prod/jazz/process/1.0/globalConfigurationAware"
property,
which indicates the level of support of Jazz Global Configuration.
Value might be:
"yes"
: the application supports configurations and versioned artifacts."compatible"
: the application does not support configurations, but it can still link to or interact with versioned
artifacts."no"
: the application has no support for configurations or versioning.provider
- the service providervalue
- the value of the globalConfigurationAware
property.public static boolean getSupportContributionsToLinkIndexProvider(ServiceProvider provider)
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportContributionsToLinkIndexProvider"
property,
which indicates whether the application provides a TRS feed that populates the Link Index Provider with information for the target application.provider
- the service providertrue
if the application provides a TRS feed, false
if not.public static void setSupportContributionsToLinkIndexProvider(ServiceProvider provider, boolean value)
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportContributionsToLinkIndexProvider"
property,
which indicates whether the application provides a TRS feed that populates the Link Index Provider with information for the target application.provider
- the service providervalue
- true
if the application provides a TRS feed, false
if not.public static boolean isSupportLinkDiscoveryViaLinkIndexProvider(ServiceProvider provider)
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportLinkDiscoveryViaLinkIndexProvider"
property,
which indicates whether the application queries the Link Index Provider to get information about incoming links from other applications.provider
- the service providertrue
if the application queries the Link Index Provider, false
if not.public static void setSupportLinkDiscoveryViaLinkIndexProvider(ServiceProvider provider, boolean value)
"http://jazz.net/xmlns/prod/jazz/process/1.0/supportLinkDiscoveryViaLinkIndexProvider"
property,
which indicates whether the application queries the Link Index Provider to get information about incoming links from other applications.provider
- the service providervalue
- true
to indicate the application queries the Link Index Provider, false
if not.