Java tutorial
// Copyright 2008 The Parancoe Team // // 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 it.jugpadova.po; import javax.persistence.DiscriminatorValue; import javax.persistence.Entity; import javax.persistence.Transient; import org.apache.commons.lang.StringUtils; /** * A web link resource. * * @author Lucio Benfante (<a href="lucio.benfante@jugpadova.it">lucio.benfante@jugpadova.it</a>) * @version $Revision$ */ @Entity @DiscriminatorValue("Link") public class EventLink extends EventResource { private String url; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } @Transient public String getAbbreviatedUrl() { return StringUtils.abbreviate(url, 40); } }