All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stormpath.sdk.impl.schema.DefaultField Maven / Gradle / Ivy

Go to download

The Stormpath Java SDK core implemenation .jar is used at runtime to support API invocations. This implementation jar should be a runtime dependency only and should NOT be depended on at compile time by your code. The implementations within this jar can change at any time without warning - use it with runtime scope only.

There is a newer version: 2.0.4-okta
Show newest version
/*
 * Copyright 2016 Stormpath, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.stormpath.sdk.impl.schema;

import com.stormpath.sdk.impl.ds.InternalDataStore;
import com.stormpath.sdk.impl.resource.AbstractInstanceResource;
import com.stormpath.sdk.impl.resource.BooleanProperty;
import com.stormpath.sdk.impl.resource.Property;
import com.stormpath.sdk.impl.resource.ResourceReference;
import com.stormpath.sdk.impl.resource.StringProperty;
import com.stormpath.sdk.schema.Field;
import com.stormpath.sdk.schema.Schema;

import java.util.Map;

/**
 * @since 1.2.0
 */
public class DefaultField extends AbstractInstanceResource implements Field {

    // SIMPLE PROPERTIES
    static final StringProperty NAME = new StringProperty("name");
    public static final BooleanProperty REQUIRED = new BooleanProperty("required");

    // INSTANCE RESOURCE REFERENCES:
    static final ResourceReference SCHEMA = new ResourceReference("schema", Schema.class);

    private static final Map PROPERTY_DESCRIPTORS = createPropertyDescriptorMap(
            NAME, REQUIRED, SCHEMA);

    public DefaultField(InternalDataStore dataStore) {
        super(dataStore);
    }

    public DefaultField(InternalDataStore dataStore, Map properties) {
        super(dataStore, properties);
    }

    @Override
    public Map getPropertyDescriptors() {
        return PROPERTY_DESCRIPTORS;
    }

    @Override
    public String getName() {
        return getString(NAME);
    }

    @Override
    public boolean isRequired() {
        return getBoolean(REQUIRED);
    }

    @Override
    public Field setRequired(boolean required) {
        setProperty(REQUIRED, required);
        return this;
    }

    @Override
    public Schema getSchema() {
        return getResourceProperty(SCHEMA);
    }

    public DefaultField setSchema(Schema schema) {
        setResourceProperty(SCHEMA, schema);
        return this;
    }

    @Override
    public void delete() {
        getDataStore().delete(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy