BidirectionalAssociationObjectA.java :  » Database-ORM » db-ojb » org » apache » ojb » broker » Java Open Source

Java Open Source » Database ORM » db ojb 
db ojb » org » apache » ojb » broker » BidirectionalAssociationObjectA.java
/*
 * Created by IntelliJ IDEA.
 * User: Matt
 * Date: Jun 9, 2002
 * Time: 6:51:35 PM
 * To change template for new class use 
 * Code Style | Class Templates options (Tools | IDE Options).
 */
package org.apache.ojb.broker;

import java.io.Serializable;

public class BidirectionalAssociationObjectA implements Serializable
{
    private String pk;
    private String fkToB;
    private BidirectionalAssociationObjectB relatedB;

    public String getPk()
    {
        return pk;
    }

    public void setPk(String pk)
    {
        this.pk = pk;
    }

    public String getFkToB()
    {
        return fkToB;
    }

    public void setFkToB(String fkToB)
    {
        this.fkToB = fkToB;
    }

    public BidirectionalAssociationObjectB getRelatedB()
    {
        return relatedB;
    }

    public void setRelatedB(BidirectionalAssociationObjectB relatedB)
    {
        this.relatedB = relatedB;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.