Alachisoft.NCache.Common.Extensibility.Client.RPC.SurrogateIdentifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
package Alachisoft.NCache.Common.Extensibility.Client.RPC;
import Alachisoft.NCache.Common.Extensibility.Client.RPC.Impl.IMergable;
public class SurrogateIdentifier implements IMergable {
private String privateObjectUID;
private String privateTypeName;
public final String getObjectUID() {
return privateObjectUID;
}
public final void setObjectUID(String value) {
privateObjectUID = value;
}
public final String getTypeName() {
return privateTypeName;
}
public final void setTypeName(String value) {
privateTypeName = value;
}
public final void BeginMerge() {
}
public final void EndMerge() {
}
public final IMergable MergeWith(IMergable input) {
return null;
}
}