Search in sources :

Example 46 with NotFoundException

use of com.sequenceiq.cloudbreak.controller.NotFoundException in project cloudbreak by hortonworks.

the class ClusterTemplateService method get.

public ClusterTemplate get(Long id) {
    ClusterTemplate clusterTemplate = clusterTemplateRepository.findOne(id);
    if (clusterTemplate == null) {
        throw new NotFoundException(String.format("ClusterTemplate '%s' not found.", id));
    }
    authorizationService.hasReadPermission(clusterTemplate);
    return clusterTemplate;
}
Also used : ClusterTemplate(com.sequenceiq.cloudbreak.domain.ClusterTemplate) NotFoundException(com.sequenceiq.cloudbreak.controller.NotFoundException)

Example 47 with NotFoundException

use of com.sequenceiq.cloudbreak.controller.NotFoundException in project cloudbreak by hortonworks.

the class ConstraintTemplateService method getPublicTemplate.

public ConstraintTemplate getPublicTemplate(String name, IdentityUser user) {
    ConstraintTemplate constraintTemplate = constraintTemplateRepository.findOneByName(name, user.getAccount());
    if (constraintTemplate == null) {
        throw new NotFoundException(String.format(CONSTRAINT_NOT_FOUND_MSG, name));
    }
    authorizationService.hasReadPermission(constraintTemplate);
    return constraintTemplate;
}
Also used : ConstraintTemplate(com.sequenceiq.cloudbreak.domain.ConstraintTemplate) NotFoundException(com.sequenceiq.cloudbreak.controller.NotFoundException)

Example 48 with NotFoundException

use of com.sequenceiq.cloudbreak.controller.NotFoundException in project cloudbreak by hortonworks.

the class ConstraintTemplateService method delete.

public void delete(String name, IdentityUser user) {
    ConstraintTemplate constraintTemplate = constraintTemplateRepository.findByNameInAccount(name, user.getAccount(), user.getUserId());
    if (constraintTemplate == null) {
        throw new NotFoundException(String.format(CONSTRAINT_NOT_FOUND_MSG, name));
    }
    delete(constraintTemplate);
}
Also used : ConstraintTemplate(com.sequenceiq.cloudbreak.domain.ConstraintTemplate) NotFoundException(com.sequenceiq.cloudbreak.controller.NotFoundException)

Example 49 with NotFoundException

use of com.sequenceiq.cloudbreak.controller.NotFoundException in project cloudbreak by hortonworks.

the class ConstraintTemplateService method get.

public ConstraintTemplate get(Long id) {
    ConstraintTemplate constraintTemplate = constraintTemplateRepository.findOne(id);
    if (constraintTemplate == null) {
        throw new NotFoundException(String.format(CONSTRAINT_NOT_FOUND_MSG, id));
    }
    authorizationService.hasReadPermission(constraintTemplate);
    return constraintTemplate;
}
Also used : ConstraintTemplate(com.sequenceiq.cloudbreak.domain.ConstraintTemplate) NotFoundException(com.sequenceiq.cloudbreak.controller.NotFoundException)

Example 50 with NotFoundException

use of com.sequenceiq.cloudbreak.controller.NotFoundException in project cloudbreak by hortonworks.

the class TemplateService method getPublicTemplate.

public Template getPublicTemplate(String name, IdentityUser user) {
    Template template = templateRepository.findOneByName(name, user.getAccount());
    if (template == null) {
        throw new NotFoundException(String.format(TEMPLATE_NOT_FOUND_MSG, name));
    }
    authorizationService.hasReadPermission(template);
    return template;
}
Also used : NotFoundException(com.sequenceiq.cloudbreak.controller.NotFoundException) Template(com.sequenceiq.cloudbreak.domain.Template)

Aggregations

NotFoundException (com.sequenceiq.cloudbreak.controller.NotFoundException)50 CloudbreakImageNotFoundException (com.sequenceiq.cloudbreak.core.CloudbreakImageNotFoundException)9 Stack (com.sequenceiq.cloudbreak.domain.Stack)8 Blueprint (com.sequenceiq.cloudbreak.domain.Blueprint)5 ProxyConfig (com.sequenceiq.cloudbreak.domain.ProxyConfig)5 ClusterTemplate (com.sequenceiq.cloudbreak.domain.ClusterTemplate)4 ConstraintTemplate (com.sequenceiq.cloudbreak.domain.ConstraintTemplate)4 RDSConfig (com.sequenceiq.cloudbreak.domain.RDSConfig)4 Template (com.sequenceiq.cloudbreak.domain.Template)4 LdapConfig (com.sequenceiq.cloudbreak.domain.LdapConfig)3 AmbariClient (com.sequenceiq.ambari.client.AmbariClient)2 AutoscaleStackResponse (com.sequenceiq.cloudbreak.api.model.AutoscaleStackResponse)2 StackResponse (com.sequenceiq.cloudbreak.api.model.StackResponse)2 BadRequestException (com.sequenceiq.cloudbreak.controller.BadRequestException)2 InstanceMetaData (com.sequenceiq.cloudbreak.domain.InstanceMetaData)2 Recipe (com.sequenceiq.cloudbreak.domain.Recipe)2 SecurityGroup (com.sequenceiq.cloudbreak.domain.SecurityGroup)2 CertificateResponse (com.sequenceiq.cloudbreak.api.model.CertificateResponse)1 HttpClientConfig (com.sequenceiq.cloudbreak.client.HttpClientConfig)1 CloudConnectorException (com.sequenceiq.cloudbreak.cloud.exception.CloudConnectorException)1