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

com.orbitz.monitoring.api.Decomposer Maven / Gradle / Ivy

package com.orbitz.monitoring.api;

import java.io.Serializable;

/**
 * The contract for classes that takes objects that can not be safely sent
 * across the network and turns them into objects that can be sent.

* * The underlying implementation of the new objects is not defined. There are * two requirements for the object that is to replace the original object when * sent over the network: *

    *
  • All JavaBean properties must be available in the returned object *
  • The resulting object must be able to be introspected when the * {@link Monitor#get(String)} method is called with an expression * for a key *
* * @author Doug Barth */ public interface Decomposer { /** * Takes an object that may not be able to be sent across the wire and turns * it into one that can be. * * @param object the object to transform * @return the Serializable version of this object */ Serializable decompose(Object object); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy