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

com.maxifier.mxcache.activity.ActivitySerializableImpl Maven / Gradle / Ivy

/*
 * Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
 */
package com.maxifier.mxcache.activity;

import java.io.Serializable;

/**
 * @author Alexander Kochurov ([email protected])
 */
class ActivitySerializableImpl implements Serializable {
    private static final long serialVersionUID = 100L;

    private final String name;

    public ActivitySerializableImpl(Activity activity) {
        this.name = activity.getName();
    }

    public Object readResolve() {
        return ActivityTracker.getActivity(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy