CloudSlang/cs-actions

View on GitHub
cs-date-time/src/main/java/io/cloudslang/content/datetime/utils/DatetimeInputs.java

Summary

Maintainability
A
1 hr
Test Coverage
/*
 * Copyright 2019-2024 Open Text
 * This program and the accompanying materials
 * are made available under the terms of the Apache License v2.0 which accompany this distribution.
 *
 * The Apache License is available 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 io.cloudslang.content.datetime.utils;

import io.cloudslang.content.constants.InputNames;

/**
 * Created by victor on 17.10.2016.
 */
public class DatetimeInputs extends InputNames {
    public static final String LOCALE_LANG = "localeLang";
    public static final String LOCALE_COUNTRY = "localeCountry";
    public static final String LOCALE_DATE = "date";
    public static final String LOCALE_OFFSET = "offset";
    public static final String DATE_FORMAT = "dateFormat";
    public static final String DATE_LOCALE_LANG = "dateLocaleLang";
    public static final String DATE_LOCALE_COUNTRY = "dateLocaleCountry";
    public static final String OUT_FORMAT = "outFormat";
    public static final String OUT_LOCALE_LANG = "outLocaleLang";
    public static final String OUT_LOCALE_COUNTRY = "outLocaleCountry";
    public static final String TIMEZONE = "timezone";
}