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

com.linkedin.cytodynamics.test.TestInterfaceImpl Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2018-2019 LinkedIn Corporation
 * All Rights Reserved.
 *
 * Licensed under the BSD 2-Clause License (the "License").
 * See LICENSE in the project root for license information.
 */
package com.linkedin.cytodynamics.test;

/**
 * An implementation of the test interface that returns "A".
 */
public class TestInterfaceImpl implements TestInterface {
  @Override
  public String getValue() {
    return "A";
  }

  @Override
  public boolean classExists(String className) {
    try {
      Class.forName(className);
      return true;
    } catch (ClassNotFoundException e) {
      return false;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy