X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=mythtv%2Fmonitor%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fmythtv%2FRecordingPk.java;fp=mythtv%2Fmonitor%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fmythtv%2FRecordingPk.java;h=d47af6d70c772a43d93dd08ac770ff804e8307f8;hb=5ac55ba349fd3c81d3d04e23528a609134db209a;hp=0000000000000000000000000000000000000000;hpb=244c2406bd9ae23fd4d8dfb07eda03e8bcf95bb3;p=utils diff --git a/mythtv/monitor/src/main/java/org/wamblee/mythtv/RecordingPk.java b/mythtv/monitor/src/main/java/org/wamblee/mythtv/RecordingPk.java new file mode 100644 index 00000000..d47af6d7 --- /dev/null +++ b/mythtv/monitor/src/main/java/org/wamblee/mythtv/RecordingPk.java @@ -0,0 +1,31 @@ +/* + * Copyright 2006 the original author or authors. + * + * 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.wamblee.mythtv; + +import java.util.Date; + +import javax.persistence.Column; +import javax.persistence.Id; +import javax.persistence.JoinColumn; + +/** + * + */ +public class RecordingPk { + public Channel _channel; + public Date _starttime; +}