Class RegistryObject
- java.lang.Object
-
- gov.nasa.pds.citool.registry.model.RegistryObject
-
public class RegistryObject extends Object
-
-
Constructor Summary
Constructors Constructor Description RegistryObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getAltLid()
String
getDescription()
String
getGuid()
String
getLid()
String
getMd5Hash()
String
getName()
String
getObjectType()
Slots
getSlots()
String
getVersionName()
int
hashCode()
void
setAltLid(String lid)
void
setDescription(String description)
void
setGuid(String guid)
void
setLid(String lid)
void
setMd5Hash(String md5Hash)
void
setName(String name)
void
setObjectType(String objectType)
void
setSlots(Slots slots)
void
setVersionName(String versionName)
-
-
-
Method Detail
-
getGuid
public String getGuid()
-
getLid
public String getLid()
-
getAltLid
public String getAltLid()
-
setGuid
public void setGuid(String guid)
-
setLid
public void setLid(String lid)
-
setAltLid
public void setAltLid(String lid)
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name
- the name to set
-
getObjectType
public String getObjectType()
- Returns:
- the objectType
-
setObjectType
public void setObjectType(String objectType)
- Parameters:
objectType
- the objectType to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description
- the description to set
-
getVersionName
public String getVersionName()
- Returns:
- the internally tracked version
-
setVersionName
public void setVersionName(String versionName)
- Parameters:
versionName
- the version to set for the registry tracked version
-
getMd5Hash
public String getMd5Hash()
-
setMd5Hash
public void setMd5Hash(String md5Hash)
-
getSlots
public Slots getSlots()
-
setSlots
public void setSlots(Slots slots)
-
-