001
014
015 package com.liferay.portal.model.impl;
016
017 import com.liferay.portal.kernel.xml.QName;
018 import com.liferay.portal.model.EventDefinition;
019 import com.liferay.portal.model.PortletApp;
020
021
024 public class EventDefinitionImpl implements EventDefinition {
025
026 public EventDefinitionImpl(
027 QName qName, String valueType, PortletApp portletApp) {
028
029 _qName = qName;
030 _valueType = valueType;
031 _portletApp = portletApp;
032 }
033
034 public QName getQName() {
035 return _qName;
036 }
037
038 public void setQName(QName qName) {
039 _qName = qName;
040 }
041
042 public String getValueType() {
043 return _valueType;
044 }
045
046 public void setValueType(String valueType) {
047 _valueType = valueType;
048 }
049
050 public PortletApp getPortletApp() {
051 return _portletApp;
052 }
053
054 public void setPortletApp(PortletApp portletApp) {
055 _portletApp = portletApp;
056 }
057
058 private QName _qName;
059 private String _valueType;
060 private PortletApp _portletApp;
061
062 }