Examples of Alias


Examples of br.net.woodstock.rockframework.security.Alias

      Assert.notNull(entry, "entry");
      Assert.notNull(entry.getAlias(), "entry.alias");
      Assert.notNull(entry.getType(), "entry.type");
      Assert.notNull(entry.getValue(), "entry.value");

      Alias alias = entry.getAlias();
      String name = alias.getName();
      Object value = entry.getValue();
      String password = null;

      if (alias instanceof PasswordAlias) {
        PasswordAlias pa = (PasswordAlias) alias;
View Full Code Here

Examples of co.nubetech.crux.model.Alias

  public static Object getObjectValue(Result result, Alias alias) {
    return getValue(getValue(result, alias), alias);
  }
 
  public static Alias getAlias(ReportDesign design) {
    Alias alias = design.getRowAlias();
    logger.debug("The ReportDesign " + design + " has the row alias " + alias);
     if (alias == null) {
       alias = design.getColumnAlias();
       logger.debug("The ReportDesign " + design + " has the col alias " + alias);
     }
View Full Code Here

Examples of com.badlogic.gdx.tools.imagepacker.TexturePacker2.Alias

    if (settings.alias) {
      String crc = hash(rect.getImage(this));
      Rect existing = crcs.get(crc);
      if (existing != null) {
        System.out.println(rect.name + " (alias of " + existing.name + ")");
        existing.aliases.add(new Alias(rect));
        return null;
      }
      crcs.put(crc, rect);
    }
View Full Code Here

Examples of com.badlogic.gdx.tools.texturepacker.TexturePacker.Alias

    if (settings.alias) {
      String crc = hash(rect.getImage(this));
      Rect existing = crcs.get(crc);
      if (existing != null) {
        System.out.println(rect.name + " (alias of " + existing.name + ")");
        existing.aliases.add(new Alias(rect));
        return null;
      }
      crcs.put(crc, rect);
    }
View Full Code Here

Examples of com.taobao.top.analysis.statistics.data.Alias

            continue;
          }

          if (tag.equalsIgnoreCase("alias")) {
            Alias alias = new Alias();
            alias.setName(start.getAttributeByName(
                new QName("", "name")).getValue());
            alias.setKey(Integer.valueOf(start.getAttributeByName(
                new QName("", "key")).getValue()));

            rule.getAliasPool().put(alias.getName(), alias);

            continue;
          }
         
          if (tag.equalsIgnoreCase("inner-key")){
View Full Code Here

Examples of com.volantis.charset.configuration.Alias

                this.charsetMap.put(name, cs);
                ArrayList aliases = cs.getAlias();
                if(aliases != null) {
                    Iterator aliasIterator = aliases.iterator();
                    while(aliasIterator.hasNext()) {
                        Alias a = (Alias) aliasIterator.next();
                        charsetNameAliasMap.put(a.getName(), name);
                    }
                }
                // Check to see whether this charset needs preloading.
                if(cs.isPreload()) {
                    try {
View Full Code Here

Examples of de.fuberlin.wiwiss.d2rq.algebra.AliasMap.Alias

    this.joinConditions.addAll(aliases().applyToJoinSet(other.joinConditions));
    this.projections.addAll(aliases().applyToProjectionSet(other.projections));
    Collection<Alias> newAliases = new ArrayList<Alias>();
    Collection<Alias> removedAliases = new ArrayList<Alias>();
    for (Alias alias : (Collection<Alias>) this.aliases) {
      Alias newAlias = other.aliases().originalOf(alias);
      if (!alias.equals(newAlias)) {
        removedAliases.add(alias);
      }
      newAliases.add(newAlias);
    }
View Full Code Here

Examples of it.geosolutions.geobatch.xstream.Alias

    }

    private void dumpActionConfig(ActionConfiguration cfg) {

        AliasRegistry aliasRegistry = new AliasRegistry();
        Alias alias = new Alias();
        alias.setAliasRegistry(aliasRegistry);
        // FIXME see improvements done in the latest snapshots of GB 1.4
        //new ScriptAliasRegistrar(aliasRegistry);
        XStream xstream = new XStream();
        alias.setAliases(xstream);
       
        String xml = xstream.toXML(cfg);
        LOGGER.info("Dumping " + cfg.getClass().getSimpleName() + " ---> \n" + xml);
    }
View Full Code Here

Examples of net.sf.josser.jdbc.impl.Alias

    this.setAltlangRow(new AltLang());
    this.setNewsGroupRow(new NewsGroup());
    this.setSymbolicRow(new Symbolic());

    this.setProcessingAlias(false);
    this.setAliasRow(new Alias());
    this.setPhase(0);
  }
View Full Code Here

Examples of org.apache.cxf.binding.corba.wsdl.Alias

       
        // add corba:anonstring
        typeMap.getStructOrExceptionOrUnion().add(anon);

        // corba:alias
        Alias alias = new Alias();
        alias.setQName(new QName(typeMap.getTargetNamespace(), stringScopedName.toString()));
        alias.setBasetype(anon.getQName());
        alias.setType(simpleType.getQName());
        alias.setRepositoryID(stringScopedName.toIDLRepositoryID());

        // add corba:alias
        setCorbaType(alias);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.