Return-Path: Delivered-To: apmail-ws-juddi-cvs-archive@www.apache.org Received: (qmail 93868 invoked from network); 8 Apr 2009 22:17:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Apr 2009 22:17:46 -0000 Received: (qmail 48057 invoked by uid 500); 8 Apr 2009 22:17:46 -0000 Delivered-To: apmail-ws-juddi-cvs-archive@ws.apache.org Received: (qmail 48016 invoked by uid 500); 8 Apr 2009 22:17:45 -0000 Mailing-List: contact juddi-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list juddi-cvs@ws.apache.org Received: (qmail 48007 invoked by uid 99); 8 Apr 2009 22:17:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2009 22:17:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2009 22:17:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0F11E23888EB; Wed, 8 Apr 2009 22:17:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r763430 - /webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java Date: Wed, 08 Apr 2009 22:17:24 -0000 To: juddi-cvs@ws.apache.org From: jfaath@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090408221725.0F11E23888EB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jfaath Date: Wed Apr 8 22:17:24 2009 New Revision: 763430 URL: http://svn.apache.org/viewvc?rev=763430&view=rev Log: adding subscription match table Added: webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java (with props) Added: webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java?rev=763430&view=auto ============================================================================== --- webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java (added) +++ webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java Wed Apr 8 22:17:24 2009 @@ -0,0 +1,73 @@ +/* + * Copyright 2001-2008 The Apache Software Foundation. + * + * Licensed 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 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.juddi.model; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.FetchType; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.JoinColumn; +import javax.persistence.ManyToOne; +import javax.persistence.Table; + +/** + * @author Jeff Faath + */ +@Entity +@Table(name = "juddiv3_subscription_match") +public class SubscriptionMatch implements java.io.Serializable { + + private static final long serialVersionUID = 1L; + + private Long id; + private Subscription subscription; + private String entityKey; + + public SubscriptionMatch() { + } + + @Id + @GeneratedValue(strategy=GenerationType.AUTO) + public Long getId() { + return id; + } + public void setId(Long id) { + this.id = id; + } + + @ManyToOne(fetch = FetchType.LAZY) + @JoinColumn(name = "subscription_key", nullable = false) + public Subscription getSubscription() { + return subscription; + } + public void setSubscription(Subscription subscription) { + this.subscription = subscription; + } + + @Column(name = "entity_key", nullable = false) + public String getEntityKey() { + return entityKey; + } + public void setEntityKey(String entityKey) { + this.entityKey = entityKey; + } + + + +} Propchange: webservices/juddi/branches/v3_trunk/juddi-core/src/main/java/org/apache/juddi/model/SubscriptionMatch.java ------------------------------------------------------------------------------ svn:mime-type = text/plain --------------------------------------------------------------------- To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: juddi-cvs-help@ws.apache.org