Index: topia-security/src/java/org/codelutin/topia/security/entities/authorization/TopiaIdLinkImpl.java diff -u /dev/null topia-security/src/java/org/codelutin/topia/security/entities/authorization/TopiaIdLinkImpl.java:1.1 --- /dev/null Wed Oct 18 08:46:40 2006 +++ topia-security/src/java/org/codelutin/topia/security/entities/authorization/TopiaIdLinkImpl.java Wed Oct 18 08:46:34 2006 @@ -0,0 +1,14 @@ +package org.codelutin.topia.security.entities.authorization; + +import org.codelutin.topia.security.listener.NoEntityVetoableReadListener; + +public class TopiaIdLinkImpl extends TopiaIdLinkAbstract implements TopiaIdLink, NoEntityVetoableReadListener { + + private static final long serialVersionUID = 1L; + + public void set(String replace, String by) { + setReplace(replace); + setBy(by); + } + +}