Package org.dspace.app.util
Class WebApp
- java.lang.Object
-
- org.dspace.app.util.WebApp
-
- All Implemented Interfaces:
ReloadableEntity<Integer>
@Entity public class WebApp extends Object implements ReloadableEntity<Integer>
Database entity representation of the webApp table- Author:
- kevinvandevelde at atmire.com
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedWebApp()Protected constructor, create object using:WebAppService.create(Context, String, String, Date, int)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAppName()IntegergetID()The unique identifier of this entity instance.IntegergetIsui()DategetStarted()StringgetUrl()voidsetAppName(String appName)voidsetIsui(Integer isui)voidsetStarted(Date started)voidsetUrl(String url)
-
-
-
Constructor Detail
-
WebApp
protected WebApp()
Protected constructor, create object using:WebAppService.create(Context, String, String, Date, int)
-
-
Method Detail
-
getID
public Integer getID()
Description copied from interface:ReloadableEntityThe unique identifier of this entity instance.- Specified by:
getIDin interfaceReloadableEntity<Integer>- Returns:
- the value of the primary key for this instance.
-
getAppName
public String getAppName()
-
setAppName
public void setAppName(String appName)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getStarted
public Date getStarted()
-
setStarted
public void setStarted(Date started)
-
getIsui
public Integer getIsui()
-
setIsui
public void setIsui(Integer isui)
-
-