All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.counter.model.CounterWrapper Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.counter.model;

import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.model.ModelWrapper;

import java.util.HashMap;
import java.util.Map;

/**
 * 

* This class is a wrapper for {@link Counter}. *

* * @author Brian Wing Shun Chan * @see Counter * @generated */ public class CounterWrapper implements Counter, ModelWrapper { public CounterWrapper(Counter counter) { _counter = counter; } @Override public Class getModelClass() { return Counter.class; } @Override public String getModelClassName() { return Counter.class.getName(); } @Override public Map getModelAttributes() { Map attributes = new HashMap(); attributes.put("name", getName()); attributes.put("currentId", getCurrentId()); return attributes; } @Override public void setModelAttributes(Map attributes) { String name = (String)attributes.get("name"); if (name != null) { setName(name); } Long currentId = (Long)attributes.get("currentId"); if (currentId != null) { setCurrentId(currentId); } } /** * Returns the primary key of this counter. * * @return the primary key of this counter */ @Override public java.lang.String getPrimaryKey() { return _counter.getPrimaryKey(); } /** * Sets the primary key of this counter. * * @param primaryKey the primary key of this counter */ @Override public void setPrimaryKey(java.lang.String primaryKey) { _counter.setPrimaryKey(primaryKey); } /** * Returns the name of this counter. * * @return the name of this counter */ @Override public java.lang.String getName() { return _counter.getName(); } /** * Sets the name of this counter. * * @param name the name of this counter */ @Override public void setName(java.lang.String name) { _counter.setName(name); } /** * Returns the current ID of this counter. * * @return the current ID of this counter */ @Override public long getCurrentId() { return _counter.getCurrentId(); } /** * Sets the current ID of this counter. * * @param currentId the current ID of this counter */ @Override public void setCurrentId(long currentId) { _counter.setCurrentId(currentId); } @Override public boolean isNew() { return _counter.isNew(); } @Override public void setNew(boolean n) { _counter.setNew(n); } @Override public boolean isCachedModel() { return _counter.isCachedModel(); } @Override public void setCachedModel(boolean cachedModel) { _counter.setCachedModel(cachedModel); } @Override public boolean isEscapedModel() { return _counter.isEscapedModel(); } @Override public java.io.Serializable getPrimaryKeyObj() { return _counter.getPrimaryKeyObj(); } @Override public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) { _counter.setPrimaryKeyObj(primaryKeyObj); } @Override public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() { return _counter.getExpandoBridge(); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.model.BaseModel baseModel) { _counter.setExpandoBridgeAttributes(baseModel); } @Override public void setExpandoBridgeAttributes( com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) { _counter.setExpandoBridgeAttributes(expandoBridge); } @Override public void setExpandoBridgeAttributes( com.liferay.portal.service.ServiceContext serviceContext) { _counter.setExpandoBridgeAttributes(serviceContext); } @Override public java.lang.Object clone() { return new CounterWrapper((Counter)_counter.clone()); } @Override public int compareTo(com.liferay.counter.model.Counter counter) { return _counter.compareTo(counter); } @Override public int hashCode() { return _counter.hashCode(); } @Override public com.liferay.portal.model.CacheModel toCacheModel() { return _counter.toCacheModel(); } @Override public com.liferay.counter.model.Counter toEscapedModel() { return new CounterWrapper(_counter.toEscapedModel()); } @Override public com.liferay.counter.model.Counter toUnescapedModel() { return new CounterWrapper(_counter.toUnescapedModel()); } @Override public java.lang.String toString() { return _counter.toString(); } @Override public java.lang.String toXmlString() { return _counter.toXmlString(); } @Override public void persist() throws com.liferay.portal.kernel.exception.SystemException { _counter.persist(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof CounterWrapper)) { return false; } CounterWrapper counterWrapper = (CounterWrapper)obj; if (Validator.equals(_counter, counterWrapper._counter)) { return true; } return false; } /** * @deprecated As of 6.1.0, replaced by {@link #getWrappedModel} */ public Counter getWrappedCounter() { return _counter; } @Override public Counter getWrappedModel() { return _counter; } @Override public void resetOriginalValues() { _counter.resetOriginalValues(); } private Counter _counter; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy