blob: a92d748db73e3ec71994492f3767bd760991adae [file] [log] [blame]
package org.eclipse.osbp.runtime.web.sample.dtos;
import java.beans.PropertyChangeListener;
import java.io.Serializable;
import org.eclipse.osbp.dsl.common.datatypes.IDto;
import org.eclipse.osbp.runtime.common.annotations.Dispose;
import org.eclipse.osbp.runtime.common.annotations.Filter;
import org.eclipse.osbp.runtime.web.sample.dtos.BaseUUIDDto;
@SuppressWarnings("all")
public class CountryDto extends BaseUUIDDto implements IDto, Serializable, PropertyChangeListener {
@Filter
private String name;
@Filter
private String isoCode;
@Filter
private boolean euMember;
public CountryDto() {
installLazyCollections();
}
/**
* Installs lazy collection resolving for entity {@link Country} to the dto {@link CountryDto}.
*
*/
protected void installLazyCollections() {
super.installLazyCollections();
}
/**
* Checks whether the object is disposed.
* @throws RuntimeException if the object is disposed.
*/
private void checkDisposed() {
if (isDisposed()) {
throw new RuntimeException("Object already disposed: " + this);
}
}
/**
* Calling dispose will destroy that instance. The internal state will be
* set to 'disposed' and methods of that object must not be used anymore.
* Each call will result in runtime exceptions.<br/>
* If this object keeps composition containments, these will be disposed too.
* So the whole composition containment tree will be disposed on calling this method.
*/
@Dispose
public void dispose() {
if (isDisposed()) {
return;
}
super.dispose();
}
/**
* Returns the name property or <code>null</code> if not present.
*/
public String getName() {
return this.name;
}
/**
* Sets the <code>name</code> property to this instance.
*
* @param name - the property
* @throws RuntimeException if instance is <code>disposed</code>
*
*/
public void setName(final String name) {
firePropertyChange("name", this.name, this.name = name );
}
/**
* Returns the isoCode property or <code>null</code> if not present.
*/
public String getIsoCode() {
return this.isoCode;
}
/**
* Sets the <code>isoCode</code> property to this instance.
*
* @param isoCode - the property
* @throws RuntimeException if instance is <code>disposed</code>
*
*/
public void setIsoCode(final String isoCode) {
firePropertyChange("isoCode", this.isoCode, this.isoCode = isoCode );
}
/**
* Returns the euMember property or <code>null</code> if not present.
*/
public boolean getEuMember() {
return this.euMember;
}
/**
* Sets the <code>euMember</code> property to this instance.
*
* @param euMember - the property
* @throws RuntimeException if instance is <code>disposed</code>
*
*/
public void setEuMember(final boolean euMember) {
firePropertyChange("euMember", this.euMember, this.euMember = euMember );
}
public void propertyChange(final java.beans.PropertyChangeEvent event) {
Object source = event.getSource();
// forward the event from embeddable beans to all listeners. So the parent of the embeddable
// bean will become notified and its dirty state can be handled properly
{
super.propertyChange(event);
}
}
}