blob: 11fd78f6a4895b8f9bf4593f98c4ff9d08f9a1a0 [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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agEmployee_Last_Name 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.openjpa.persistence.property;
import javax.persistence.Embeddable;
@Embeddable
public class EmbeddableAddress implements IAddress {
private String line1;
private String line2;
private String city;
private String state;
private String zipCode;
private String country;
@Override
public String getLine1() {
return line1;
}
@Override
public void setLine1(String line1) {
this.line1 = line1;
}
@Override
public String getLine2() {
return line2;
}
@Override
public void setLine2(String line2) {
this.line2 = line2;
}
@Override
public String getCity() {
return city;
}
@Override
public void setCity(String city) {
this.city = city;
}
@Override
public String getState() {
return state;
}
@Override
public void setState(String state) {
this.state = state;
}
@Override
public String getZipCode() {
return zipCode;
}
@Override
public void setZipCode(String zipCode) {
this.zipCode = zipCode;
}
@Override
public String getCountry() {
return country;
}
@Override
public void setCountry(String country) {
this.country = country;
}
@Override
public String toString() {
return( "org.apache.openjpa.persistence.compatible.EmbeddableAddress: " +
" line1: " + getLine1() +
" line2: " + getLine2() +
" city: " + getCity() +
" state: " + getState() +
" zipCode: " + getZipCode() +
" country: " + getCountry() );
}
}