Examples of Repository

@source $URL$
  • org.guvnor.common.services.project.model.Repository
  • org.guvnor.structure.repositories.Repository
  • org.infoglue.cms.entities.management.Repository
  • org.jboss.gravia.repository.Repository
    A repository that contains {@link Resource resources}. @author thomas.diesler@jboss.com @since 11-May-2012
  • org.jboss.profileservice.spi.repository.Repository
    Mirror the OBR Repository @author Scott.Stark@jboss.org @version $Revision: 65457 $
  • org.jbpm.designer.repository.Repository
    Repository is responsible for managing its components that are as follows:
  • org.jdesktop.wonderland.common.modules.ModuleRepository.Repository
  • org.jfree.repository.Repository
    Creation-Date: 13.11.2006, 11:37:44 @author Thomas Morgner
  • org.jpublish.Repository
  • org.lilyproject.repository.api.Repository
    A Repository is a set of tables, tables contain records.

    This interface is here for backwards compatibility with pre-2.2 Lily versions. In Lily 2.2, the functionality has been split out over 2 new interfaces: {@link LRepository} and {@link LTable}, from which Repository extends. New code should be written against either {@link LRepository} or {@link LTable}.

    A Repository object represents one specific table within one specific named repository. It is obtained by:

  • casting the result of calling on {@link RepositoryManager#getRepository(String)} or related methodsto Repository (this will then use the default 'record' table)
  • casting the result of calling {@link LRepository#getTable(String)} to Repository.
  • For backwards compatibility, Repository extends from LTable. The methods of LTable will in this case be executed against the table for which this repository has been retrieved: either the default table called "record" or another table in case this Repository instance was cast from a call on {@link Repository#getTable(String)}.

    While Repository extends from Closeable, you don't need to call close on it. When using LilyClient, Repositories are closed as part of closing LilyClient, and when embedded in the lily-server process, the lifecycle is also managed automatically.

  • org.locationtech.geogig.repository.Repository
    A repository is a collection of commits, each of which is an archive of what the project's working tree looked like at a past date, whether on your machine or someone else's.

    It also defines HEAD (see below), which identifies the branch or commit the current working tree stemmed from. Lastly, it contains a set of branches and tags, to identify certain commits by name.

    @see WorkingTree
  • org.modeshape.jcr.api.Repository
    An extension of JCR 2.0's Repository interface, with a few ModeShape-specific enhancements.
  • org.moxie.Repository
  • org.omg.CORBA.Repository
  • org.openide.filesystems.Repository
  • org.openrdf.repository.Repository
    A Sesame repository that contains RDF data that can be queried and updated. Access to the repository can be acquired by openening a connection to it. This connection can then be used to query and/or update the contents of the repository. Depending on the implementation of the repository, it may or may not support multiple concurrent connections.

    Please note that a repository needs to be initialized before it can be used and that it should be shut down before it is discarded/garbage collected. Forgetting the latter can result in loss of data (depending on the Repository implementation)! @author Arjohn Kampman

  • org.opensolaris.opengrok.history.Repository
    An interface for an external repository. @author Trond Norbye
  • org.osgi.service.obr.Repository
    Represents a repository. @version $Revision: 1.3 $
  • org.osgi.service.repository.Repository
    A repository service that contains {@link Resource resources}.

    Repositories may be registered as services and may be used as by a resolve context during resolver operations.

    Repositories registered as services may be filtered using standard service properties. @ThreadSafe @noimplement @author $Id: 0ce322be0d7242d30e47b7f972057d90e9b57c5e $

  • org.outerj.daisy.repository.Repository
  • org.pentaho.di.repository.Repository
  • org.pentaho.reporting.libraries.repository.Repository
    A repository represents a abstract view on a filesystem. It always has a single root-entry and grants access to a repository-specific mime-registry. @author Thomas Morgner
  • org.platformlayer.images.model.Repository
  • org.ringojs.repository.Repository
    Repository represents an abstract container of resources (e.g. code, skins, ...). In addition to resources, repositories may contain other repositories, building a hierarchical structure.
  • org.sonatype.nexus.client.core.subsystem.repository.Repository
    A Nexus repository. @since 2.3
  • org.sonatype.nexus.proxy.repository.Repository
    Repository interface used by Proximity. It is an extension of ResourceStore iface, allowing to make direct RepositoryItemUid based requests which bypasses AccessManager. Also, defines some properties. @author cstamas
  • org.springframework.roo.project.Repository
    Simplified immutable representation of a repository.

    Structured after the model used by Maven and Ivy. @author Stefan Schmidt @since 1.1

  • org.stringtree.Repository
  • org.uberfire.backend.repositories.Repository
  • org.wso2.carbon.registry.core.jdbc.Repository
    Encapsulates the retrieving, storing, modifying and deleting of resources. This class only deals with the current versions of resources and it is unaware of any versioning or snapshot activity. Only the current version related tables are accessed and updated from the methods of this class.
  • se.jbee.inject.Repository
    Manages the already created instances. @author Jan Bernitt (jan@jbee.se)
  • uk.ac.osswatch.simal.model.jena.Repository

  • Examples of com.google.devtools.moe.client.repositories.Repository

       * @return a list of pending Migrations since last {@link Equivalence} per migrationConfig
       */
      public static List<Migration> determineMigrations(
          ProjectContext context, MigrationConfig migrationConfig, Db db) {

        Repository fromRepo = context.repositories.get(migrationConfig.getFromRepository());
        EquivalenceMatchResult equivMatch = fromRepo.revisionHistory.findRevisions(
            null,  // Start at head.
            new EquivalenceMatcher(migrationConfig.getToRepository(), db));

        // TODO(user): Decide whether to migrate linear or graph history here. Once DVCS Writers
    View Full Code Here

    Examples of com.kolich.havalo.entities.types.Repository

      public Repository createRepository(final HavaloUUID id,
        final KeyPair keyPair) {
        // Get a proper pointer to this Repository.  Do not fail
        // if the underlying File (directory) is not found yet -- it
        // won't exist yet because it hasn't been created.
        final Repository repo = getRepository(id, false);
        try {
          // Grab an exclusive "write" lock on the Repository and
          // attempt to actually create the corresponding/underlying
          // directory on disk.
          return new ReentrantReadWriteEntityLock<Repository>(repo) {
            @Override
            public Repository transaction() throws Exception {
              // Attempt to create the repository directory if it does
              // not already exist (it shouldn't).
              if(repo.getFile().exists()) {
                throw new DuplicateRepositoryException("Repository " +
                  "already exists (file=" +
                    repo.getFile().getAbsolutePath() + ", id=" +
                      repo.getRepoId() + ")");
              }
              // Create the new directory (and any required parent
              // directories).
              forceMkdir(repo.getFile());
              // Set the access key pair on this repository to the one
              // provided by the caller.
              repo.setKeyPair(keyPair);
              return repo;
            }
            @Override
            public void success(final Repository repo) throws Exception {         
              // Queue the repository to be flushed to disk.
    View Full Code Here

    Examples of com.kurento.kmf.repository.Repository

      public static final Logger log = LoggerFactory
          .getLogger(GenericRepositoryRecorder.class);

      public static void record(HttpRecorderSession contentSession, String itemId) {
        Repository repository = contentSession.getRepository();
        RepositoryItem repositoryItem;
        try {
          repositoryItem = repository.findRepositoryItemById(itemId);
          log.info("Deleting existing repository '{}'", itemId);
          repository.remove(repositoryItem);
        } catch (NoSuchElementException e) {
          log.info("Repository item '{}' does not previously exist", itemId);
        }
        repositoryItem = contentSession.getRepository().createRepositoryItem(
            itemId);
    View Full Code Here

    Examples of com.m11n.android.model.Repository

      }

      private Repository parse(InputStream is)
      throws IOException, SAXException
      {
        Repository repository = new Repository();

        Document doc = builder.parse(is);
       
        Element root = doc.getDocumentElement();
       
        NodeList children = root.getChildNodes();
       
        for(int i=0; i<children.getLength(); i++)
        {
          Node node = children.item(i);
         
          if(License.ELEMENT_NAME.equals(node.getNodeName()))
          {
            License license = new License();
           
            license.setText(node.getTextContent());
           
            repository.setLicense(license);
          }
          else
          {
            Item item = parseItem(node);
           
            if(item!=null)
            {
              repository.addItem(item);
            }
          }
        }
       
        return repository;
    View Full Code Here

    Examples of com.redhat.ceylon.common.config.Repositories.Repository

            if (property == null) {
                throw new BuildException("'property' is a required attribute for 'ceylon-config-value'");
            }
            CeylonConfig config = getConfig();
            Repositories reps = Repositories.withConfig(config);
            Repository rep;
            String repdesc;
            if (name != null) {
                rep = reps.getRepository(name);
                repdesc = "of name '" + name + "'";
            } else {
                rep = reps.getRepositoryByTypeWithDefaults(type.name());
                repdesc = "of type '" + type.name() + "'";
            }
            if (rep != null) {
                String value = null;
                switch (key) {
                case name:
                    value = rep.getName(); break;
                case url:
                    value = rep.getUrl(); break;
                default:
                    Credentials cred = rep.getCredentials();
                    if (cred != null) {
                        switch (key) {
                        case user:
                            value = cred.getUser(); break;
                        case password:
    View Full Code Here

    Examples of com.softsizo.data.Repository

                                new Date(), ""));
            }
        }

        public Repository getRepository(SVNURL url) throws SVNException {
          Repository repository = new Repository();
          repository.setUrl(url.toDecodedString());
          repository.setRoot(url.toDecodedString());
          repository.setUuid("123456789");
          repository.setLatestRevision(999);
            return repository;
        }
    View Full Code Here

    Examples of com.sun.enterprise.module.Repository

            if (!f.exists()) {
                System.err.println(repoPath + " does not exist.");
                System.exit(-1);
            }
            OSGiFactoryImpl.initialize(null);
            Repository moduleRepository = new OSGiDirectoryBasedRepository("repo", f);
            moduleRepository.initialize();

            PackageAnalyser analyser = new PackageAnalyser(moduleRepository);
            Collection<Wire> wires = analyser.analyseWirings();
            Collection<String> exportedPkgs = analyser.findAllExportedPackageNames();
            analyser.generateBundleReport(bundleOut);
    View Full Code Here

    Examples of com.tuenti.supernanny.repo.Repository

          }
        } catch (IOException e) {
          e.printStackTrace();
        }

        Repository repo = repoProvider.getRepo(req.getRepoType(), req.getRepo());

        List<Artifact> possibleArtifactsFor = repo.getPossibleArtifactsFor(req);
        if (possibleArtifactsFor != null) {
          Collections.sort(possibleArtifactsFor,  Artifact.getArtifactComparator(true));
          for (Artifact a: possibleArtifactsFor) {
            if (req.matches(a.getName(), a.getVersion())) {
              return a;
    View Full Code Here

    Examples of com.volantis.mcs.repository.Repository

         *             This was deprecated in version 3.5.1.
         */
        public Repository getLocalRepository(String defaultProjectName)
                throws RepositoryException {

            Repository repository = null;

            // Check that the bean exists
            if (volantisBean != null) {
                // Retrieve the JDBC DataSource configured in the runtime
                DataSource ds =
    View Full Code Here

    Examples of de.idos.updates.repository.Repository

      @Before
      public void initializeVersionRepository() throws Throwable {
        folder.create();
        this.repositoryFolder = folder.newFolder("repository");
        this.versionStoreFolder = folder.newFolder("versions");
        Repository repository = new FilesystemRepository(repositoryFolder);
        versionStore = new FilesystemVersionStore(versionStoreFolder,
                new ZipInstallationStarter(new FilesystemInstallationStarter()));
        updateSystemBuilder.useStore(versionStore);
        updateSystemBuilder.useRepository(repository);
        Installation installation = versionStore.beginInstallation(currentVersion);
    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.