/** * $Id: EntityTagApplication.java 105077 2012-02-24 22:54:29Z ottenhoff@longsight.com $ * $URL: https://source.sakaiproject.org/svn/entitybroker/trunk/impl/src/java/org/sakaiproject/entitybroker/dao/EntityTagApplication.java $ * AutoRegister.java - entity-broker - 31 May 2007 7:01:11 PM - azeckoski ************************************************************************** * Copyright (c) 2008 The Sakai Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ECL-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.sakaiproject.entitybroker.dao; /** * This is the persistent object for storing entity tag applications, * i.e. the combination of an entity and a tag, or the instance of a tag on an entity * * @author Aaron Zeckoski (aaronz@vt.edu) */ public class EntityTagApplication { private Long id; private String entityRef; private String entityPrefix; private String tag; public EntityTagApplication() { } public EntityTagApplication(String entityRef, String entityPrefix, String tag) { this.entityRef = entityRef; this.entityPrefix = entityPrefix; this.tag = tag; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getEntityRef() { return entityRef; } public void setEntityRef(String entityRef) { this.entityRef = entityRef; } public String getEntityPrefix() { return entityPrefix; } public void setEntityPrefix(String entityPrefix) { this.entityPrefix = entityPrefix; } public String getTag() { return tag; } public void setTag(String tag) { this.tag = tag; } }