Examples of ObjectType


Examples of org.drools.verifier.components.ObjectType

    public Collection<ObjectType> getObjectTypesByRuleName(String ruleName) {
        Set<ObjectType> set = new HashSet<ObjectType>();

        for ( Pattern pattern : patternsByRuleName.get( ruleName ) ) {
            ObjectType objectType = (ObjectType) getVerifierObject( VerifierComponentType.OBJECT_TYPE,
                                                                    pattern.getObjectTypePath() );
            set.add( objectType );
        }

        return set;
View Full Code Here

Examples of org.erlide.cover.views.model.ObjectType

        final ICoverageObject statsEl = (ICoverageObject) element;

        switch (columnIndex) {
        case 0:
            final ObjectType type = statsEl.getType();

            switch (type) {
            case FUNCTION:
                img = Activator.getImageDescriptor(Images.FUNCTION).createImage();
                break;
View Full Code Here

Examples of org.fieldapi.core.FieldObject.ObjectType

                {
                    JsonNode notification = json.get(i);

                    int uuid = notification.get("uuid").intValue();
                    String type = notification.get("type").textValue();
                    ObjectType subjectType = ObjectType.valueOf(notification.get("subjectType").textValue());
                    String subjectUri = notification.get("subjectUri").textValue();

                    NotificationStatus status = NotificationStatus.Undeliverable;
                    if (type.equals(NotificationType.ConfigurationChangeNotification.toString()))
                        status = Notification.sendConfigurationChangeNotification(subjectType, subjectUri);
View Full Code Here

Examples of org.fluxtream.core.connectors.ObjectType

                    LOG.error("BodyTrackController.setFacetMetadata(): Exception while trying to check authorization.", e);
                }

                if (accessAllowed) {

                    final ObjectType objectType = ObjectType.getObjectType(connector, objectTypeName);
                    if (objectType != null) {
                        ApiKey apiKey = guestService.getApiKey(uid, connector);
                        final AbstractFacet facet = apiDataService.getFacetById(apiKey, objectType, facetId);
                        if (facet != null) {
                            try {
View Full Code Here

Examples of org.metaworks.ObjectType

           
            final Vector oldArgumentNames = new Vector();
            oldArgumentNames.add(getTransformer().getInputArguments());
            oldArgumentNames.add(getTransformer().getOutputArguments());

            ObjectType type = new ObjectType(getTransformer().getClass()){

              @Override
              public void save(Instance rec) {

                String[] oldInputArgNames = (String[]) oldArgumentNames.get(0);
View Full Code Here

Examples of org.w3._2000._09.xmldsig_.ObjectType

            }
            assertEquals(obj1List.size(), obj2List.size());
            Iterator<ObjectType> objList1Itr = obj1List.iterator();
            Iterator<ObjectType> objList2Itr = obj2List.iterator();
            while (objList1Itr.hasNext()) {
                    ObjectType obj1 = objList1Itr.next();
                    ObjectType obj2 = objList2Itr.next();
                    assertEquals(obj1.getEncoding(), obj2.getEncoding());
                    assertEquals(obj1.getId(), obj2.getId());
                    assertEquals(obj1.getMimeType(), obj2.getMimeType());
            }
        }
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.