Package org.apache.stratos.adc.mgt.exception

Examples of org.apache.stratos.adc.mgt.exception.InvalidCartridgeAliasException


        Pattern pattern = Pattern.compile(patternString);
       
        if (!pattern.matcher(alias).matches()) {
          String msg = "The alias " + alias + " can contain only alpha-numeric lowercase characters. Please enter a valid alias.";
      log.error(msg);
      throw new InvalidCartridgeAliasException(msg, cartridgeType, alias);
        }
   
    boolean isAliasTaken = false;
    try {     
      isAliasTaken = PersistenceManager.isAliasAlreadyTaken(alias, cartridgeType);     
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.mgt.exception.InvalidCartridgeAliasException

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.