com.ibm.ram.common.data
Class CommunityAssetType

java.lang.Object
  extended by com.ibm.ram.common.data.CommunityAssetType
Direct Known Subclasses:
RAMCommunityAssetType

public class CommunityAssetType
extends java.lang.Object

Represents an asset type that is scoped to a specific community

Since:
7.1

Constructor Summary
CommunityAssetType()
           
 
Method Summary
 CommunityInformation getCommunity()
           
 java.lang.String getConfiguration()
          Get the configuration string for the community asset type.
 java.lang.String getDescription()
           
 AssetType getMasterAssetType()
           
 boolean isLocal()
           
 void setCommunity(CommunityInformation community)
           
 void setConfiguration(java.lang.String configuration)
           
 void setDescription(java.lang.String description)
           
 void setLocal(boolean local)
           
 void setMasterAssetType(AssetType master)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CommunityAssetType

public CommunityAssetType()
Method Detail

getMasterAssetType

public AssetType getMasterAssetType()
Returns:
Returns the parent.
Since:
7.1

setMasterAssetType

public void setMasterAssetType(AssetType master)
Parameters:
master - The parent to set.
Since:
7.1

getCommunity

public CommunityInformation getCommunity()
Returns:
Returns the community.
Since:
7.1

setCommunity

public void setCommunity(CommunityInformation community)
Parameters:
community - The community to set.
Since:
7.1

getDescription

public java.lang.String getDescription()
Returns:
Returns the description.
Since:
7.1

setDescription

public void setDescription(java.lang.String description)
Parameters:
description - The description to set.
Since:
7.1

getConfiguration

public java.lang.String getConfiguration()
Get the configuration string for the community asset type. If none is set locally (and isLocal() is false) then the master asset type's configuration string will be returned instead.

This string isn't considered API because it may change between versions.

Returns:
Returns the configuration string.
Since:
7.1

setConfiguration

public void setConfiguration(java.lang.String configuration)
Parameters:
configuration - The configuration to set.
Since:
7.1

isLocal

public boolean isLocal()
Returns:
Returns the local.
Since:
7.1

setLocal

public void setLocal(boolean local)
Parameters:
local - The local to set.
Since:
7.1