/** * Copyright 2014 David L. Whitehurst * * 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. * * Code developed and licensed here for com.dlw packaging was * formulated, copied, written, drafted, or otherwise created by * David L. Whitehurst, at dlwhitehurst@me.com. This license is * freely available to the general public and is used here because * it provides the foundation for the use, duplication, and sharing * of open source software code. The cummulative code base under this * packaging was not written, maintained, or otherwise deployed by * the Apache Group. This code does not reflect the technological * growth at apache.org or the Apache Software Foundation community * collective. * */ package org.musicrecital.model.director; import org.musicrecital.model.BaseObject; /** * @author <a href="mailto:dlwhitehurst@me.com">David L. Whitehurst</a> * */ public class Venue extends BaseObject { private Long id; /* (non-Javadoc) * @see org.musicrecital.model.BaseObject#toString() */ @Override public String toString() { // TODO Auto-generated method stub return null; } /* (non-Javadoc) * @see org.musicrecital.model.BaseObject#equals(java.lang.Object) */ @Override public boolean equals(Object o) { // TODO Auto-generated method stub return false; } /* (non-Javadoc) * @see org.musicrecital.model.BaseObject#hashCode() */ @Override public int hashCode() { // TODO Auto-generated method stub return 0; } }