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

com.emc.vipr.model.catalog.ServiceFieldRestRep Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2015 EMC Corporation
 * All Rights Reserved
 */
package com.emc.vipr.model.catalog;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "service_field")
public class ServiceFieldRestRep extends ServiceItemRestRep {

    public static final String ASSET_TYPE_PREFIX = "assetType.";

    private boolean required;
    private String initialValue;
    private String select;
    private boolean lockable;
    private Integer min;
    private Integer max;
    private String regEx;
    private String failureMessage;
    private List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy