Package org.sonatype.nexus.capabilities.client.support

Examples of org.sonatype.nexus.capabilities.client.support.CapabilityImpl


    this.type = checkNotNull(type);
  }

  @Override
  public Capability create(final CapabilityClient client) {
    return new CapabilityImpl(client, type);
  }
View Full Code Here


    return new CapabilityImpl(client, type);
  }

  @Override
  public Capability create(final CapabilityClient client, final CapabilityStatusXO settings) {
    return new CapabilityImpl(client, settings);
  }
View Full Code Here

  public ReflectiveCapability(final Class<? extends Capability> capabilityType,
                              final CapabilityClient client,
                              final String type)
  {
    this.capabilityType = checkNotNull(capabilityType);
    delegate = new CapabilityImpl(client, type);
  }
View Full Code Here

  public ReflectiveCapability(final Class<? extends Capability> capabilityType,
                              final CapabilityClient client,
                              final CapabilityStatusXO settings)
  {
    this.capabilityType = checkNotNull(capabilityType);
    delegate = new CapabilityImpl(client, settings);
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.capabilities.client.support.CapabilityImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.