Package de.innovationgate.webgate.api.templates

Examples of de.innovationgate.webgate.api.templates.ContentSourceSpecs


      _timer.schedule(new LastChangedTask(), 1000 * refreshSeconds,  1000 * refreshSeconds);
    }

   
    // Gather specs
    ContentSourceSpecs specs = new ContentSourceSpecs();
    specs.setBrowseable(true);
    specs.setWritable(true);
    specs.setCalculatesKeys(true);
    specs.setMaintainsLastChanged(true);
    specs.setLowerCaseItems(true);
        specs.setServePropertiesAsMetas(false);
    return specs;

  }
View Full Code Here


      else {
        _proxyPort = PROXY_DEFAULTPORT;
      }
    }
   
    ContentSourceSpecs specs = new ContentSourceSpecs();
    specs.setBrowseable(false);
    specs.setMaintainsLastChanged(false);
    specs.setQueryable(true);
    specs.setWritable(false);
        specs.setLowerCaseItems(true);
        specs.setServePropertiesAsMetas(true);
   
    return specs;
  }
View Full Code Here

        fetchMode = ONE_BEAN_PER_USER;
      }
    }
 
    // Create and return specs
    ContentSourceSpecs specs = new ContentSourceSpecs();
    specs.setBrowseable(false);
    specs.setMaintainsLastChanged(false);
    specs.setQueryable(false);
    specs.setWritable(true);
    specs.setUseMasterLogin(true);
    return specs;
   
  }
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.templates.ContentSourceSpecs

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.