com.sap.cloud.sdk.service.prov.model.internal.CSNElementModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
SAP Cloud Platform SDK for service development
/*******************************************************************************
* (c) 201X SAP SE or an SAP affiliate company. All rights reserved.
******************************************************************************/
package com.sap.cloud.sdk.service.prov.model.internal;
public class CSNElementModel {
private String name = "";
private String type = "";
private boolean key = false;
private boolean notnull = false;
private int length = 0;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public boolean isKey() {
return key;
}
public void setKey(boolean key) {
this.key = key;
}
public boolean isNotnull() {
return notnull;
}
public void setNotnull(boolean notnull) {
this.notnull = notnull;
}
public Integer getLength() {
return length;
}
public void setLength(Integer length) {
this.length = length;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy