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

org.ovirt.api.metamodel.analyzer.ServiceUsage Maven / Gradle / Ivy

There is a newer version: 1.3.10
Show newest version
/*
 * Copyright oVirt Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.ovirt.api.metamodel.analyzer;

import org.ovirt.api.metamodel.concepts.Name;

/**
 * This class is used to remember that an undefined service was used, and how to replace it with the real one.
 */
public class ServiceUsage {
    // The name of the undefined service:
    private Name name;

    // The method used to replace the service:
    private ServiceSetter setter;

    public Name getName() {
        return name;
    }

    public void setName(Name name) {
        this.name = name;
    }

    public ServiceSetter getSetter() {
        return setter;
    }

    public void setSetter(ServiceSetter setter) {
        this.setter = setter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy