blob: 3c8e066d5909bb6bdb7e28a146acc0661bfdb9d9 [file] [log] [blame]
/*****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.apache.cayenne.map;
import java.io.Serializable;
import org.apache.cayenne.configuration.ConfigurationNode;
import org.apache.cayenne.configuration.ConfigurationNodeVisitor;
import org.apache.cayenne.util.XMLEncoder;
import org.apache.cayenne.util.XMLSerializable;
/**
* A persistent attribute of an embeddable object.
*
* @since 3.0
*/
public class EmbeddableAttribute implements ConfigurationNode, XMLSerializable,
Serializable {
protected String name;
protected String type;
protected String dbAttributeName;
protected Embeddable embeddable;
public EmbeddableAttribute() {
}
public EmbeddableAttribute(String name) {
this.name = name;
}
/**
* @since 3.1
*/
public <T> T acceptVisitor(ConfigurationNodeVisitor<T> visitor) {
return visitor.visitEmbeddableAttribute(this);
}
@Override
public void encodeAsXML(XMLEncoder encoder, ConfigurationNodeVisitor delegate) {
encoder.start("embeddable-attribute")
.attribute("name", getName())
.attribute("type", getType())
.attribute("db-attribute-name", dbAttributeName);
delegate.visitEmbeddableAttribute(this);
encoder.end();
}
public String getDbAttributeName() {
return dbAttributeName;
}
public void setDbAttributeName(String dbAttributeName) {
this.dbAttributeName = dbAttributeName;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Embeddable getEmbeddable() {
return embeddable;
}
public void setEmbeddable(Embeddable embeddable) {
this.embeddable = embeddable;
}
}