All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.maxifier.mxcache.impl.resource.MxBoundResource Maven / Gradle / Ivy

Go to download

Constains all classes necessary for launching a MxCache-instrumentated application

There is a newer version: 2.6.9
Show newest version
/*
 * Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
 */
package com.maxifier.mxcache.impl.resource;

import javax.annotation.Nonnull;

/**
 * @author Alexander Kochurov ([email protected])
 *
 * No equals or hash code: each resource is unique!
 */
class MxBoundResource extends MxResourceImpl {

    public MxBoundResource(@Nonnull Object owner, @Nonnull String name) {
        super(owner, name);
    }

    @Override
    public String toString() {
        return owner + "#" + getName();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy