org.jasig.portal.channel.dao.jpa
Class ChannelLocalizationData

java.lang.Object
  extended by org.jasig.portal.channel.dao.jpa.ChannelLocalizationData
All Implemented Interfaces:
Serializable

public class ChannelLocalizationData
extends Object
implements Serializable

ChannelLocalizationData represents locale-specific ChannelDefinition metadata. This class is intended to be used in a JPA/Hibernate-managed map and does not include the locale itself as part of its data model.

Author:
Jen Bourey, jbourey@unicon.net
See Also:
Serialized Form

Constructor Summary
ChannelLocalizationData()
          Default constructor
 
Method Summary
 String getDescription()
          Get the description for this locale.
 String getName()
          Get the name for this locale.
 String getTitle()
          Get the title for this locale.
 void setDescription(String description)
          Set the description for this localized
 void setName(String name)
          Set the name for this locale
 void setTitle(String title)
          Set the title for this locale
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ChannelLocalizationData

public ChannelLocalizationData()
Default constructor

Method Detail

getName

public String getName()
Get the name for this locale.

Returns:
localized name

getTitle

public String getTitle()
Get the title for this locale.

Returns:
localized title

getDescription

public String getDescription()
Get the description for this locale.

Returns:
localized description

setName

public void setName(String name)
Set the name for this locale

Parameters:
name - localized name

setTitle

public void setTitle(String title)
Set the title for this locale

Parameters:
title - localized title

setDescription

public void setDescription(String description)
Set the description for this localized

Parameters:
description - localized description


Copyright © 2010 Jasig. All Rights Reserved.